Skip to content

Commit

Permalink
fix: removed extra check
Browse files Browse the repository at this point in the history
  • Loading branch information
rupato-deriv committed Feb 18, 2025
1 parent c11daa9 commit 509889f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ const Layout = () => {
redirectCallbackUri: `${window.location.origin}/callback`,
});
}
}, [isLoggedInCookie, isClientAccountsPopulated, isOAuth2Enabled, isEndpointPage, isCallbackPage]);
}, [
isLoggedInCookie,
isClientAccountsPopulated,
isOAuth2Enabled,
isEndpointPage,
isCallbackPage,
clientAccountsMissingToken,
]);

return (
<div className={clsx('layout', { responsive: isDesktop })}>
Expand Down

0 comments on commit 509889f

Please sign in to comment.