Skip to content

Commit

Permalink
Merge pull request #1081 from andrew-bierman/fix/auth-redirect
Browse files Browse the repository at this point in the history
replace default unauthorized route path
  • Loading branch information
taronaleksanian authored Jul 9, 2024
2 parents f929fe3 + 5959ee4 commit b3a8b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/auth/AuthWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const AuthWrapper = ({
);

const defaultUnauthorizedElement =
Platform.OS === 'web' ? <Redirect to="/login" /> : <LandingPage />;
Platform.OS === 'web' ? <Redirect to="/sign-in" /> : <LandingPage />;

return (
<AuthLoader
Expand Down

0 comments on commit b3a8b66

Please sign in to comment.