Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Aug 23, 2023
1 parent 4d23de6 commit d72bd29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions examples/vue-app/src/views/PopupMode/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default defineComponent({
login_hint: "",
isExpanded: true,
networkList: [...Object.values(TORUS_SAPPHIRE_NETWORK), ...Object.values(TORUS_LEGACY_NETWORK)],
selectedNetwork: TORUS_SAPPHIRE_NETWORK.SAPPHIRE_DEVNET,
selectedNetwork: TORUS_LEGACY_NETWORK.TESTNET,
};
},
computed: {
Expand All @@ -209,14 +209,14 @@ export default defineComponent({
[REDDIT]: { domain: AUTH_DOMAIN, connection: "Reddit", verifierIdField: "name", isVerifierIdCaseSensitive: false },
[COGNITO]: { domain: COGNITO_AUTH_DOMAIN, identity_provider: "Google", response_type: "token", user_info_endpoint: "userInfo" },
[TORUS_EMAIL_PASSWORDLESS]: {
domain: "https://lrc.auth.openlogin.com",
domain: "https://develop-passwordless.web3auth.io",
verifierIdField: "name",
isVerifierIdCaseSensitive: false,
login_hint: this.login_hint,
connection: "email",
},
[TORUS_SMS_PASSWORDLESS]: {
domain: "https://lrc.auth.openlogin.com",
domain: "https://develop-passwordless.web3auth.io",
verifierIdField: "name",
login_hint: this.login_hint,
connection: "sms",
Expand Down
4 changes: 2 additions & 2 deletions examples/vue-app/src/views/RedirectMode/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ export default defineComponent({
[COGNITO]: { domain: COGNITO_AUTH_DOMAIN, identity_provider: "Google", response_type: "token", user_info_endpoint: "userInfo" },
[REDDIT]: { domain: AUTH_DOMAIN, connection: "Reddit", verifierIdField: "name", isVerifierIdCaseSensitive: false },
[TORUS_EMAIL_PASSWORDLESS]: {
domain: "https://lrc.auth.openlogin.com",
domain: "https://develop-passwordless.web3auth.io",
verifierIdField: "name",
isVerifierIdCaseSensitive: false,
login_hint: this.login_hint,
connection: "email",
},
[TORUS_SMS_PASSWORDLESS]: {
domain: "https://lrc.auth.openlogin.com",
domain: "https://develop-passwordless.web3auth.io",
verifierIdField: "name",
login_hint: this.login_hint,
connection: "sms",
Expand Down

0 comments on commit d72bd29

Please sign in to comment.