update, remove the has_attachment field from the envelopes table.

This commit is contained in:
rustmailer
2026-03-26 21:53:19 +08:00
parent 3f11c5dbbf
commit 0914bf710e
9 changed files with 27 additions and 20 deletions
+4 -4
View File
@@ -21,7 +21,7 @@ import { HTMLAttributes, useState } from 'react'
import { z } from 'zod'
import { useForm } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { cn } from '@/lib/utils'
import { cn, toSearchParams } from '@/lib/utils'
import {
Form,
FormControl,
@@ -65,7 +65,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
const { t } = useTranslation()
const { search } = useLocation();
const redirect = new URLSearchParams(search).get('redirect') || '/';
const redirect = toSearchParams(search).get('redirect') || '/';
const formSchema = getFormSchema(t)
const form = useForm<z.infer<typeof formSchema>>({
@@ -92,11 +92,11 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
if (result.theme) {
setTheme(result.theme);
}
if (result.language) {
i18n.changeLanguage(result.language);
}
navigate({ to: redirect });
} else {
toast({