pramod_Task-#239 : Display in Card View contacts List #121

Merged
vikas.nale merged 20 commits from pramod_Task-#239 into Feature_Directory 2025-05-19 07:29:19 +00:00
Showing only changes of commit 126a84b5cc - Show all commits

View File

@ -24,7 +24,7 @@ export const ContactSchema = z
phoneNumber: z phoneNumber: z
.string() .string()
.min(6, "Invalid Number") .min(6, "Invalid Number")
.max(10, "Invalid Number") .max(13, "Invalid Number")
.regex(/^[\d\s+()-]+$/, "Invalid phone number format").or(z.literal("")), .regex(/^[\d\s+()-]+$/, "Invalid phone number format").or(z.literal("")),
}) })
) )