Skip to content

Commit

Permalink
Fix login page url
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean committed Dec 23, 2024
1 parent f65874a commit bca9bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const queryClient = new QueryClient({
});
const App: React.FC = () => {
const { isDarkMode } = useContext(ThemeModeContext);
const isAuthRoute = useMatch('/auth/*');
const isAuthRoute = useMatch('/login');

return (
<QueryClientProvider client={queryClient}>
Expand Down

0 comments on commit bca9bee

Please sign in to comment.