Skip to content

Commit

Permalink
hotfix: disable refresh token query
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Dec 12, 2024
1 parent 5669480 commit 2a1674f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/contexts/AuthContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const AuthProvider = ({ children }: PropsWithChildren) => {
console.error("refreshTokenQuery error", e);
}
},
enabled: !!data?.token,
enabled: false && !!data?.token,
refetchOnWindowFocus: false,
});

Expand Down

0 comments on commit 2a1674f

Please sign in to comment.