move form too root, fixes

This commit is contained in:
2025-03-04 17:33:09 +01:00
parent 5c25937572
commit 9a35727ba1
11 changed files with 142 additions and 175 deletions

View File

@ -1,7 +1,7 @@
"use server";
import { z } from "zod";
import { oldestDate, signupFormSchema, youngestDate } from "@/app/sign-up/sign-up-form";
import { oldestDate, signupFormSchema, youngestDate } from "@/app/sign-up-form";
import listmonk, { listmonkData } from "./listmonk";
export async function signupFormSubmit(data: z.infer<typeof signupFormSchema>): Promise<string> {