Refactor_Expenses #317

Closed
pramod.mahajan wants to merge 247 commits from Refactor_Expenses into Feature_Expense
Showing only changes of commit c678897044 - Show all commits

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" }),
})