From f8b611fd4c248a7d1f9951c57055d61a9304d9ec Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 19 Jul 2026 00:05:04 -0700 Subject: [PATCH] fix lint --- src/renderer/api/utils.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/renderer/api/utils.ts b/src/renderer/api/utils.ts index 01155e7b3..ae1456a95 100644 --- a/src/renderer/api/utils.ts +++ b/src/renderer/api/utils.ts @@ -9,10 +9,7 @@ const localSettings = isElectron() ? window.api.localSettings : null; const AUTH_FAILURE_TOAST_ID = 'auth-failure'; -export const authenticationFailure = ( - currentServer: null | ServerListItem, - message?: string, -) => { +export const authenticationFailure = (currentServer: null | ServerListItem, message?: string) => { const store = useAuthStore.getState(); const serverId = currentServer?.id ?? store.currentServer?.id;