Auto save password chrome
d
Auto save password chrome
Hi everyone ! How can we have auto save password with google chrome ? I didn't have popup to save my password like other website.
r
There should be a password managers section in the recipe docs
Have a look at that
You will have to disable shadowRoot that we have and then it should work as expected. But once you do that, please make sure to check the UI components we have cause your website’s CSS might affect the CSS for our components (though mostly it shouldn’t)
d
Copy code
export const frontendConfig = () => ({
  appInfo,
  recipeList: [
    ThirdPartyEmailPasswordReact.init({
      useShadowDom: false,
      signInAndUpFeature: {
        providers: [
          ThirdPartyEmailPasswordReact.Google.init(),
          // ThirdPartyEmailPasswordReact.Github.init(),
          // ThirdPartyEmailPasswordReact.Apple.init(),
        ],
      },
    }),
    SessionReact.init(),
  ],
Like this ?
r
Yes.
d
r
Hmm. That’s odd. Can you please open an issue about this on our GitHub? We will check it out sometime today
d
I use directly
Copy code
SignInAndUp
component and it's working but not with
Copy code
ThirdPartyEmailPasswordAuthNoSSR
r
I see. Thanks. Will have a look at this.