pramod_Task-#355 : implemented Manage Buckets modal with bucket creation and listing #145

Merged
vikas.nale merged 5 commits from pramod_Task-#355 into Feature_Directory 2025-05-26 09:36:34 +00:00
Showing only changes of commit 0bc56c82cf - Show all commits

View File

@ -53,5 +53,13 @@ export const ContactSchema = z
// return hasValidEmail || hasValidPhone;
// }, {
// message: "At least one contact (email or phone) is required",
// path: ["contactPhone"],
// path: ["contactPhone"],
// });
// Buckets
export const bucketScheam = z.object( {
name: z.string().min( 1, {message: "Name is required"} ),
description:z.string().min(1,{message:"Description is required"})
})