From 8efb7c934d6ba53453936a71d6b37def05f92823 Mon Sep 17 00:00:00 2001 From: null Date: Thu, 28 May 2026 02:53:59 -0500 Subject: [PATCH] fix suggested --- client/pages/TrackerPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pages/TrackerPage.jsx b/client/pages/TrackerPage.jsx index 22b5828..13629e2 100644 --- a/client/pages/TrackerPage.jsx +++ b/client/pages/TrackerPage.jsx @@ -1337,7 +1337,7 @@ function Row({ row, year, month, refresh, index, onEditBill }) { setShowUpdateNudge(false); startTransition(async () => { try { - await api.updateBill(row.id, { expected_amount: amount }); + await api.updateBill(row.id, { name: row.name, due_day: row.due_day, expected_amount: amount }); toast.success(`Default updated to ${fmt(amount)}`); refresh?.(); } catch (err) {