We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e27b4 commit 5060a77Copy full SHA for 5060a77
packages/hooks/src/useSilentLoginAndLogout.ts
@@ -29,6 +29,11 @@ const useSilentLoginAndLogout = ({
29
window.location.pathname.includes('callback') || window.location.pathname.includes('endpoint');
30
31
useEffect(() => {
32
+ // NOTE: Remove this logic once social signup is intergated with OIDC
33
+ const params = new URLSearchParams(window.location.search);
34
+ const isUsingLegacyFlow = params.has('token1');
35
+ if (isUsingLegacyFlow) return;
36
+
37
if (
38
loggedState === 'true' &&
39
!isClientAccountsPopulated &&
0 commit comments