Skip to content

Commit

Permalink
Merge pull request #574 from fairDataSociety/fix/login-redirection
Browse files Browse the repository at this point in the history
fix: login redirection
  • Loading branch information
tfius authored Dec 20, 2023
2 parents 91f4316 + 28dcbb8 commit 2424b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Forms/LoginForm/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const LoginForm: FC = () => {
setLoginType('username');
setUser(user_name);
setDefaultNetwork(String(network.id));
router.push('/overview');
router.push('/drive');
} catch (error) {
setErrorMessage(error.message);
} finally {
Expand Down

0 comments on commit 2424b50

Please sign in to comment.