downgrade tanstack, fix msot types and exclude recursive

This commit is contained in:
Kendall Garner
2026-06-07 06:48:56 -07:00
parent ac7dc37fd0
commit 7dd6d32710
5 changed files with 51 additions and 49 deletions
@@ -97,7 +97,7 @@ export const useServerAuthenticated = () => {
isAdmin: userInfo.isAdmin,
});
// Fetch and update server version and features
// Fetch and update server version and featuresauthenticateServer
try {
const serverInfo = await controller.getServerInfo({
apiClientProps: {
@@ -298,6 +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);
}