committed by
GitHub
parent
c5828325a2
commit
a149c52b99
@@ -35,11 +35,11 @@
|
||||
"@kit/ui": "workspace:*",
|
||||
"@radix-ui/react-icons": "^1.3.2",
|
||||
"@supabase/supabase-js": "2.49.4",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"@types/react": "19.1.0",
|
||||
"@types/react-dom": "19.1.1",
|
||||
"@types/react-dom": "19.1.2",
|
||||
"lucide-react": "^0.487.0",
|
||||
"next": "15.2.5",
|
||||
"next": "15.3.0",
|
||||
"next-themes": "0.4.6",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0",
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
"@makerkit/data-loader-supabase-core": "^0.0.10",
|
||||
"@makerkit/data-loader-supabase-nextjs": "^1.2.5",
|
||||
"@supabase/supabase-js": "2.49.4",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"@tanstack/react-table": "^8.21.2",
|
||||
"@types/react": "19.1.0",
|
||||
"lucide-react": "^0.487.0",
|
||||
"next": "15.2.5",
|
||||
"next": "15.3.0",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0",
|
||||
"react-hook-form": "^7.55.0",
|
||||
|
||||
@@ -29,10 +29,10 @@
|
||||
"@marsidev/react-turnstile": "^1.1.0",
|
||||
"@radix-ui/react-icons": "^1.3.2",
|
||||
"@supabase/supabase-js": "2.49.4",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"@types/react": "19.1.0",
|
||||
"lucide-react": "^0.487.0",
|
||||
"next": "15.2.5",
|
||||
"next": "15.3.0",
|
||||
"react-hook-form": "^7.55.0",
|
||||
"react-i18next": "^15.4.1",
|
||||
"sonner": "^2.0.3",
|
||||
|
||||
@@ -278,7 +278,7 @@ function FactorsListContainer({
|
||||
const verifiedFactors = factors?.totp ?? [];
|
||||
|
||||
return (
|
||||
<div className={'flex flex-col space-y-4 animate-in fade-in duration-500'}>
|
||||
<div className={'animate-in fade-in flex flex-col space-y-4 duration-500'}>
|
||||
<div>
|
||||
<span className={'font-medium'}>
|
||||
<Trans i18nKey={'account:selectFactor'} />
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@supabase/supabase-js": "2.49.4",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"@types/react": "19.1.0",
|
||||
"lucide-react": "^0.487.0",
|
||||
"react": "19.1.0",
|
||||
|
||||
@@ -33,14 +33,14 @@
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@supabase/supabase-js": "2.49.4",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"@tanstack/react-table": "^8.21.2",
|
||||
"@types/react": "19.1.0",
|
||||
"@types/react-dom": "19.1.1",
|
||||
"@types/react-dom": "19.1.2",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"date-fns": "^4.1.0",
|
||||
"lucide-react": "^0.487.0",
|
||||
"next": "15.2.5",
|
||||
"next": "15.3.0",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0",
|
||||
"react-hook-form": "^7.55.0",
|
||||
|
||||
@@ -76,9 +76,11 @@ class AccountWebhooksService {
|
||||
return z
|
||||
.object({
|
||||
productName: z.string(),
|
||||
fromEmail: z.string({
|
||||
required_error: 'EMAIL_SENDER is required',
|
||||
}).min(1),
|
||||
fromEmail: z
|
||||
.string({
|
||||
required_error: 'EMAIL_SENDER is required',
|
||||
})
|
||||
.min(1),
|
||||
})
|
||||
.parse({
|
||||
productName,
|
||||
|
||||
Reference in New Issue
Block a user