chore(ui): disable popup based login for msal (#19737)

This commit is contained in:
Chirag Madlani 2025-02-11 15:31:46 +05:30 committed by GitHub
parent 29f067c162
commit 385e3e82a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,7 +124,7 @@ const MsalAuthenticator = forwardRef<AuthenticatorRef, Props>(
};
const renewIdToken = async () => {
const user = await fetchIdToken(true);
const user = await fetchIdToken();
return user.id_token;
};