Skip to content

Commit e00e5d4

Browse files
committed
Make redirect after sign in go to dashboard
1 parent e80d407 commit e00e5d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/SignIn/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const SignIn = () => {
1818
state,
1919
actions: { genericPageMounted },
2020
} = useOvermind();
21-
const redirectTo = new URL(location.href).searchParams.get('continue') || '/';
21+
const redirectTo = new URL(location.href).searchParams.get('continue');
2222

2323
useEffect(() => {
2424
genericPageMounted();

0 commit comments

Comments
 (0)