fix: invalid dock badge count (#250)

This commit was merged in pull request #250.
This commit is contained in:
Arjun Patel
2026-06-09 09:28:55 -07:00
committed by GitHub
parent 1aceab582c
commit a94a986fbf
-1
View File
@@ -54,6 +54,5 @@ export function useDockBadge(networkId: string | undefined) {
useEffect(() => {
platform.app.setDockBadge(unseenCount);
return () => platform.app.setDockBadge(0);
}, [unseenCount]);
}