Update required age
All checks were successful
Lint / Lint (push) Successful in 39s

This commit is contained in:
Felix Schulze 2025-03-05 12:38:46 +01:00
parent 27c012f589
commit dece05bb08

View File

@ -22,14 +22,13 @@ import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { signupFormSubmit } from "@/lib/actions"; import { signupFormSubmit } from "@/lib/actions";
import { useState } from "react"; import { useState } from "react";
import { before } from "node:test";
export const signupFormSchema = z.object({ export const signupFormSchema = z.object({
name: z.string().min(2, { message: "Name is required" }).max(50, { message: "Name is too long" }), name: z.string().min(2, { message: "Name is required" }).max(50, { message: "Name is too long" }),
email: z.string().email({ message: "Email is invalid" }), email: z.string().email({ message: "Email is invalid" }),
dob: z.date({ required_error: "Birthday is required" }), dob: z.date({ required_error: "Birthday is required" }),
}); });
export const youngestDate = new Date(new Date().setFullYear(new Date().getFullYear() - 21)); export const youngestDate = new Date(new Date().setFullYear(new Date().getFullYear() - 20));
export const oldestDate = new Date(new Date().setFullYear(new Date().getFullYear() - 100)); export const oldestDate = new Date(new Date().setFullYear(new Date().getFullYear() - 100));
export default function SignUp() { export default function SignUp() {
@ -118,7 +117,7 @@ export default function SignUp() {
/> />
</PopoverContent> </PopoverContent>
</Popover> </Popover>
<FormDescription>You must be over 21 to sign up.</FormDescription> <FormDescription>You must be over 20 to sign up.</FormDescription>
<FormMessage /> <FormMessage />
</FormItem> </FormItem>
)} )}