removed console and comment

This commit is contained in:
pramod.mahajan 2025-10-02 13:24:36 +05:30
parent 25f4f1e7a7
commit aca96c60ae
2 changed files with 1 additions and 4 deletions

View File

@ -19,7 +19,6 @@ const ExpenseAnalysis = () => {
const { watch } = methods; const { watch } = methods;
const [startDate, endDate] = watch(["startDate", "endDate"]); const [startDate, endDate] = watch(["startDate", "endDate"]);
console.log(startDate,endDate)
const { data, isLoading, isError, error, isFetching } = useExpenseAnalysis( const { data, isLoading, isError, error, isFetching } = useExpenseAnalysis(
projectId, projectId,
localToUtc(startDate), localToUtc(startDate),

View File

@ -189,9 +189,7 @@ const ManageExpense = ({ closeModal, expenseToEdit = null }) => {
const editPayload = { ...payload, id: data.id }; const editPayload = { ...payload, id: data.id };
ExpenseUpdate({ id: data.id, payload: editPayload }); ExpenseUpdate({ id: data.id, payload: editPayload });
} else { } else {
console.log(fromdata) CreateExpense(payload);
console.log(payload)
// CreateExpense(payload);
} }
}; };
const ExpenseTypeId = watch("expensesTypeId"); const ExpenseTypeId = watch("expensesTypeId");