B1: React Query deeper adoption (P1–P3) #86

Closed
null wants to merge 340 commits from branch/b1-react-query into main
1 changed files with 5 additions and 0 deletions
Showing only changes of commit f1817a520b - Show all commits

View File

@ -264,6 +264,11 @@ function buildTrackerRow(bill, payments, year, month, todayStr, options = {}) {
current_balance: bill.current_balance ?? null,
minimum_payment: bill.minimum_payment ?? null,
interest_rate: bill.interest_rate ?? null,
is_subscription: !!bill.is_subscription,
has_2fa: !!bill.has_2fa,
has_merchant_rule: !!bill.has_merchant_rule,
has_linked_transactions: !!bill.has_linked_transactions,
website: bill.website || null,
payments: safePayments,
};
}