Skip to content

Commit

Permalink
remove providers
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1995 committed Sep 23, 2024
1 parent 475dc44 commit dbe5d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/vue-example/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ const printToConsole = (...args: unknown[]) => {
}
};
const computedLoginProviders = computed(() => Object.values(LOGIN_PROVIDER).filter((x) => x !== "jwt" && x !== "webauthn"));
const computedLoginProviders = computed(() => Object.values(LOGIN_PROVIDER).filter((x) => x !== "jwt" && x !== "webauthn" && x !== "passkeys" && x !== "authenticator"));
const showEmailFlow = computed(() => selectedLoginProvider.value === LOGIN_PROVIDER.EMAIL_PASSWORDLESS);
const isLoginHintAvailable = computed(() => {
if (selectedLoginProvider.value === LOGIN_PROVIDER.EMAIL_PASSWORDLESS || selectedLoginProvider.value === LOGIN_PROVIDER.SMS_PASSWORDLESS) {
Expand Down

0 comments on commit dbe5d58

Please sign in to comment.