diff --git a/src/components/etke.cc/ServerNotificationsBadge.tsx b/src/components/etke.cc/ServerNotificationsBadge.tsx index 560cc3d..9628d12 100644 --- a/src/components/etke.cc/ServerNotificationsBadge.tsx +++ b/src/components/etke.cc/ServerNotificationsBadge.tsx @@ -27,7 +27,10 @@ const useServerNotifications = () => { const deleteServerNotifications = async () => { const deleteResponse = await dataProvider.deleteServerNotifications(etkeccAdmin); if (deleteResponse.success) { - await fetchNotifications(); + setServerNotifications({ + notifications: [], + success: true, + }); } };