Whitelabel not showing logos from react native

I have this set in my app:

const web3auth = new Web3Auth(WebBrowser, {
  clientId,
  network: OPENLOGIN_NETWORK.TESTNET,
  mfaLevel: MFA_LEVELS.NONE,
  whiteLabel: {
    name: "Pose",
    logoLight: "https://passport.compose.art/build/_assets/logo-white-JRBWMI4S.png",
    logoDark: "https://passport.compose.art/build/_assets/logo-black-L3UB2TCQ.png",
    defaultLanguage: "en",
    dark: true,
    theme: {
      primary: "#cddc39",
    },
  },
});

However, I am not getting the customized modal. It uses the dark mode but not the logos and stills says web3auth login.

Hey @brennen

Due to certain restrictions from Apple’s review policy, we are unable to display the web3auth modal in the React-Native SDK. Nonetheless, you can still create a custom login screen that showcases all the login options available.

What about for the redirect, where it shows the web3auth logos? In a perfect world I would be able to customize those to be whitelabel as our brand rather than web3auth.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.