From 6f4499796a49c16de03f9677012299cc96ba2056 Mon Sep 17 00:00:00 2001 From: Yassine <95612053+yassinedorbozgithub@users.noreply.github.com> Date: Mon, 27 Jan 2025 06:10:44 +0100 Subject: [PATCH] Update MoveDialog.tsx --- frontend/src/app-components/dialogs/MoveDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app-components/dialogs/MoveDialog.tsx b/frontend/src/app-components/dialogs/MoveDialog.tsx index 71f8cd37..5df69672 100644 --- a/frontend/src/app-components/dialogs/MoveDialog.tsx +++ b/frontend/src/app-components/dialogs/MoveDialog.tsx @@ -36,7 +36,7 @@ export const MoveDialog = ({ const handleMove = async () => { if (selectedCategoryId && rest.callback) { await rest.callback(selectedCategoryId, ids); - rest.closeDialog(); + rest.reset?.(); } };