fix: invalid dock badge count

This commit is contained in:
Arjun Patel
2026-06-09 09:10:38 -07:00
parent c1f5b6c8c1
commit df5495a8bd
-1
View File
@@ -54,6 +54,5 @@ export function useDockBadge(networkId: string | undefined) {
useEffect(() => {
platform.app.setDockBadge(unseenCount);
return () => platform.app.setDockBadge(0);
}, [unseenCount]);
}