Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/account/src/Callback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Callback = () => {
}, [clearAllTokens]);

const { error } = useHandleSignInCallback(() => {
window.location.assign('/account');
window.location.replace('/account');
});

if (error) {
Expand All @@ -20,7 +20,7 @@ const Callback = () => {
<button
type="button"
onClick={() => {
window.location.assign('/account');
window.location.replace('/account');
}}
>
Back to sign in
Expand Down
Loading