From 8b913595da9724789f297af9de3eb1099d842f01 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Tue, 9 Jun 2026 20:56:30 -0700 Subject: [PATCH] revert that comment change that I somehow made --- src/renderer/hooks/use-server-authenticated.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/hooks/use-server-authenticated.ts b/src/renderer/hooks/use-server-authenticated.ts index 9416a4e4e..77d42b84e 100644 --- a/src/renderer/hooks/use-server-authenticated.ts +++ b/src/renderer/hooks/use-server-authenticated.ts @@ -97,7 +97,7 @@ export const useServerAuthenticated = () => { isAdmin: userInfo.isAdmin, }); - // Fetch and update server version and featuresauthenticateServer + // Fetch and update server version and features try { const serverInfo = await controller.getServerInfo({ apiClientProps: { @@ -298,7 +298,7 @@ export const useServerAuthenticated = () => { await new Promise((resolve) => setTimeout(resolve, NETWORK_RETRY_DELAY_MS)); // Retry authentication - // eslint-disable-next-line react-hooks/immutability + return authenticateServer(serverWithAuth, nextRetry); }