Skip to content

Commit

Permalink
change the order of login methods
Browse files Browse the repository at this point in the history
  • Loading branch information
shahbaz17 committed May 2, 2024
1 parent e3a6712 commit 30b3326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/web3authStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const useWeb3authStore = defineStore('web3auth', () => {

async function initializeWeb3Auth() {
const chainConfig = {
...SUPPORTED_NETWORKS[POLYGON_AMOY_CHAIN_ID],
...SUPPORTED_NETWORKS[POLYGON_AMOY_CHAIN_ID]
}

const privateKeyProvider = new EthereumPrivateKeyProvider({
Expand All @@ -44,7 +44,7 @@ export const useWeb3authStore = defineStore('web3auth', () => {
// logoDark: 'https://images.web3auth.io/login-farcaster-active.svg',
// logoLight: 'https://images.web3auth.io/login-farcaster-light.svg',
mode: 'light',
loginMethodsOrder: ['farcaster', 'google', 'twitter', 'github']
loginMethodsOrder: ['google', 'twitter', 'farcaster', 'github']
},
web3AuthNetwork: 'sapphire_mainnet'
}
Expand Down

0 comments on commit 30b3326

Please sign in to comment.