🎨UI Customization

enabledAuthProviders: if you want to enable only a specific provider you can do it easily by adding the parameter enabledProviders to the constructor of Eartho. Install the SDK and initialize Eartho

const earthoOneConfig = {
                accessId: 'testid',
                enabledAuthProviders: ['facebook','google','apple']
};

const earthoOne = connectWithPopup(earthoOneConfig);

Or

const earthoOne = connectWithRedirect(earthoOneConfig);

Last updated