diff --git a/src/components/settings/notification/newsletter-form-card.tsx b/src/components/settings/notification/newsletter-form-card.tsx index 43387b5..9aa13fa 100644 --- a/src/components/settings/notification/newsletter-form-card.tsx +++ b/src/components/settings/notification/newsletter-form-card.tsx @@ -49,7 +49,7 @@ export function NewsletterFormCard({ className }: NewsletterFormCardProps) { // Create a schema for newsletter subscription const formSchema = z.object({ - subscribed: z.boolean().default(false), + subscribed: z.boolean(), }); // Initialize the form