Basically I am trying to quick start my app with the plug n play modal, but when I insert my own client id the modal shown is a web3 wallets selection modal and not a web2 social logins modal. If I switch my ID to be the one of the example app (given that I switch the network to SAPPHIRE_MAINNET), the web2 modal appears.
What is it due to? Am I missing something in my project config?
Hi Romain! It sounds like you’re experiencing an issue with the Web3Auth Plug n Play modal displaying only Web3 wallet options when using your own client ID. Let’s break down the details for the support team:
SDK Details: Plug n Play
Platform: Not specified (please let me know if it’s a specific framework like React, Angular, etc.)
Issue Description: The modal shows only Web3 wallets when using your own client ID, but displays Web2 social logins when using the example app’s client ID with the SAPPHIRE_MAINNET network.
This might be related to the configuration of your client ID or the specific settings you’ve applied in your project. To assist you better, could you please check and confirm if you’ve set up your project configuration correctly according to Web3Auth’s documentation?
If you haven’t already, providing your Web3Auth initialization and login code snippets could also help the support team identify the issue more quickly.
Thank you for sharing the details and the image! It’s helpful for diagnosing the problem. If you need any specific guidance on configuration, feel free to ask!
Note: This response was generated by an AI bot and may require further verification. The Web3Auth support team has tracked this issue and will be responding as soon as possible.
You can add an instance of AuthAdapter into your Web3Auth Modal Instance to fix this issue. Please note, this has to be done before initModal is called:
const authAdapter = new AuthAdapter({});
web3auth.configureAdapter(authAdapter);