InstantSetupPage: use replace: true for redirect
This commit is contained in:
parent
90ca3525ab
commit
1d9535e3ed
@ -30,10 +30,15 @@ export function InstantSetupPage() {
|
||||
},
|
||||
});
|
||||
|
||||
navigate({
|
||||
pathname: `/apps/${appId}/sso`,
|
||||
search: createSearchParams({ email, firstName, lastName }).toString(),
|
||||
});
|
||||
navigate(
|
||||
{
|
||||
pathname: `/apps/${appId}/sso`,
|
||||
search: createSearchParams({ email, firstName, lastName }).toString(),
|
||||
},
|
||||
{
|
||||
replace: true,
|
||||
},
|
||||
);
|
||||
}, [appId, spAcsUrl, spEntityId]);
|
||||
|
||||
return <></>;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user