Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderer/context/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
}
}, Constants.REFRESH_ACCOUNTS_INTERVAL_MS);

// biome-ignore lint/correctness/useExhaustiveDependencies: We also want to update the tray on setting changes
// biome-ignore lint/correctness/useExhaustiveDependencies: We want to update the tray on setting or notification changes
useEffect(() => {
setUseUnreadActiveIcon(settings.useUnreadActiveIcon);
setUseAlternateIdleIcon(settings.useAlternateIdleIcon);
Expand All @@ -193,7 +193,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
settings.showNotificationsCountInTray,
settings.useUnreadActiveIcon,
settings.useAlternateIdleIcon,
unreadNotificationCount,
notifications,
]);

useEffect(() => {
Expand Down