From 098bc2b7af54b5cdcf0b49c4b5d021d473ed9383 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Wed, 12 Nov 2025 14:00:32 -0500 Subject: [PATCH] fix: icon on error recovery Signed-off-by: Adam Setch --- src/renderer/context/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/context/App.tsx b/src/renderer/context/App.tsx index 2bbe72771..02b58cbed 100644 --- a/src/renderer/context/App.tsx +++ b/src/renderer/context/App.tsx @@ -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); @@ -193,7 +193,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => { settings.showNotificationsCountInTray, settings.useUnreadActiveIcon, settings.useAlternateIdleIcon, - unreadNotificationCount, + notifications, ]); useEffect(() => {