const web3Auth = new Web3Auth({
clientId:
'xxxx',
web3AuthNetwork: WEB3AUTH_NETWORK.SAPPHIRE_DEVNET,
chainConfig,
uiConfig: {
appName: 'P2PX',
mode: 'dark',
logoLight: 'https://web3auth.io/images/web3auth-logo.svg',
logoDark: 'https://web3auth.io/images/web3auth-logo---Dark.svg',
defaultLanguage: 'en',
loginGridCol: 3,
primaryButton: 'socialLogin',
},
privateKeyProvider: ethereumPrivateKeyProvider,
});
Are you using WalletServices Plugin? You can disable the widget by using the whitelabel options.
const walletServicesPlugin = new WalletServicesPlugin({
// Default is true
walletInitOptions: { whiteLabel: { showWidgetButton: false} },
});
1 Like
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.