Skip to content

Commit

Permalink
fix: registration before authentication flow
Browse files Browse the repository at this point in the history
KK-1035
  • Loading branch information
nikomakela committed May 16, 2024
1 parent 2951df6 commit 5ed3149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/home/form/HomePreliminaryForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const HomePreliminaryForm: FunctionComponent<Props> = ({
} else if (isAuthenticated) {
navigate(getPathname('/registration/form'));
} else {
login({ redirect_uri: `/registration/form` });
login({ url_state: 'next=/registration/form' });
}
};

Expand Down

0 comments on commit 5ed3149

Please sign in to comment.