From 3b48979bc039dc719a21d07bbb556e88368c7aeb Mon Sep 17 00:00:00 2001 From: dklimpel <5740567+dklimpel@users.noreply.github.com> Date: Mon, 5 Feb 2024 22:03:34 +0100 Subject: [PATCH] unselectAll syntax --- src/components/RoomDirectory.js | 4 ++-- src/components/ServerNotices.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/RoomDirectory.js b/src/components/RoomDirectory.js index c7c69cc..f3b5fb3 100644 --- a/src/components/RoomDirectory.js +++ b/src/components/RoomDirectory.js @@ -65,7 +65,7 @@ export const RoomDirectoryBulkSaveButton = () => { const { selectedIds } = useListContext(); const notify = useNotify(); const refresh = useRefresh(); - const unselectAll = useUnselectAll(); + const unselectAll = useUnselectAll("rooms"); const { createMany, isloading } = useMutation(); const handleSend = values => { @@ -74,7 +74,7 @@ export const RoomDirectoryBulkSaveButton = () => { { onSuccess: data => { notify("resources.room_directory.action.send_success"); - unselectAll("rooms"); + unselectAll(); refresh(); }, onError: error => diff --git a/src/components/ServerNotices.js b/src/components/ServerNotices.js index 631a849..ecdf1c5 100644 --- a/src/components/ServerNotices.js +++ b/src/components/ServerNotices.js @@ -114,7 +114,7 @@ export const ServerNoticeBulkButton = () => { const { selectedIds } = useListContext(); const [open, setOpen] = useState(false); const notify = useNotify(); - const unselectAll = useUnselectAll(); + const unselectAll = useUnselectAll("users"); const { createMany, isloading } = useMutation(); const handleDialogOpen = () => setOpen(true); @@ -126,7 +126,7 @@ export const ServerNoticeBulkButton = () => { { onSuccess: data => { notify("resources.servernotices.action.send_success"); - unselectAll("users"); + unselectAll(); handleDialogClose(); }, onError: error =>