diff --git a/src/pages/InstantSetupPage.tsx b/src/pages/InstantSetupPage.tsx index 51afafc..b8883e3 100644 --- a/src/pages/InstantSetupPage.tsx +++ b/src/pages/InstantSetupPage.tsx @@ -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 <>;