Fix bulk leave groups

This commit is contained in:
Natsumi
2025-07-14 16:52:31 +12:00
parent c65cc29cd4
commit ee37517b2d

View File

@@ -2948,7 +2948,7 @@
// Leave (remove user from) all selected groups // Leave (remove user from) all selected groups
function bulkLeaveGroups() { function bulkLeaveGroups() {
for (const groupId of userDialogGroupEditSelectedGroupIds.value) { for (const groupId of userDialogGroupEditSelectedGroupIds.value) {
leaveGroupPrompt(groupId); leaveGroup(groupId);
} }
} }