feat(expenses): add beloPrice and usdcEquivalent fields to Expense model and update related logic

This commit is contained in:
Jose Selesan
2026-06-08 21:13:03 -03:00
parent b08399908b
commit 142fd4e33f
6 changed files with 398 additions and 2 deletions

View File

@@ -130,6 +130,8 @@ export type Expense = {
month: number;
amount: string;
amountPayed: string | null;
beloPrice: string | null;
usdcEquivalent: string | null;
status: "PENDING" | "PAYED";
dueDate: string;
paymentDate: string | null;