From bda9bb33f343d8d064e9e774529e9fd013fb9f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Sun, 4 Feb 2024 10:07:15 +0100 Subject: [PATCH] Add email OTP toggle --- src/lib/stores/auth-methods.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/stores/auth-methods.ts b/src/lib/stores/auth-methods.ts index eca4e2054..1c2f477dd 100644 --- a/src/lib/stores/auth-methods.ts +++ b/src/lib/stores/auth-methods.ts @@ -24,6 +24,11 @@ const setAuthMethod = (project: Models.Project): AuthMethod[] => { method: 'magic-url', value: project?.authUsersAuthMagicURL }, + { + label: 'Email OTP', + method: 'email-otp', + value: project?.authEmailOtp + }, { label: 'Anonymous', method: 'anonymous',