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?.(); } };