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) {