Issues_Expense_2W Changes of Expense, Payment Request and Recurring Expense. #505

Closed
kartik.sharma wants to merge 12 commits from Issues_Expense_2W into upgrade_Expense
Showing only changes of commit 4c144c58e9 - Show all commits

View File

@ -35,7 +35,7 @@ const ExpenseByProject = () => {
const getSelectedTypeName = () => { const getSelectedTypeName = () => {
if (!selectedType) return "All Types"; if (!selectedType) return "All Types";
const found = ExpenseTypes.find((t) => t.id === selectedType); const found = ExpenseCategories.find((t) => t.id === selectedType);
return found ? found.name : "All Types"; return found ? found.name : "All Types";
}; };