From 25cfaad2fec7f95f2feed73e99eb8707b8ecf376 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 Jul 2024 16:49:46 +0200 Subject: [PATCH] Fix GroupCreationDialog.jsx --- .../components/GroupCreationDialog/GroupCreationDialog.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/src/states/Dashboard/pages/Groups/components/GroupCreationDialog/GroupCreationDialog.jsx b/dashboard/src/states/Dashboard/pages/Groups/components/GroupCreationDialog/GroupCreationDialog.jsx index fa642c8..f54355a 100644 --- a/dashboard/src/states/Dashboard/pages/Groups/components/GroupCreationDialog/GroupCreationDialog.jsx +++ b/dashboard/src/states/Dashboard/pages/Groups/components/GroupCreationDialog/GroupCreationDialog.jsx @@ -25,6 +25,7 @@ export const GroupCreationDialog = ({open, onClose, fetchGroups}) => { const closeDialog = () => { onClose(); + setName(""); setDescription(""); setCreationError(""); }