supertokens-auth-react
supertokens-auth-react copied to clipboard
Overriding default provider's functions causes issues with styling
If we do the following:
let google = ThirdPartyEmailPassword.Google.init();
ThirdPartyEmailPassword.init({
signInAndUpFeature: {
providers: [{
...google,
getRedirectURL: () => {
return "https://auth.esper.cloud/auth/callback/google"
}
}]
}
})
The rendered button for google no longer has the google branding.