made new hook for make action on give employee

This commit is contained in:
pramod mahajan 2025-07-22 14:39:49 +05:30
parent 7289edc2ed
commit c678897044

View File

@ -67,3 +67,8 @@ export const ExpenseSchema = (expenseTypes) => {
} }
}); });
}; };
export const ActionSchema = z.object({
comment : z.string().min(1,{message:"Please leave comment"}),
selectedStatus: z.string().min(1, { message: "Please select a status" }),
})