From 3fea3931f528db198446e03792441c50ff892551 Mon Sep 17 00:00:00 2001 From: null Date: Thu, 28 May 2026 23:50:03 -0500 Subject: [PATCH] style: AP badge next to bill name instead of blue dot Tracker and mobile tracker rows now show a small AP badge immediately to the right of the bill name, replacing the blue dot on the left. --- client/components/MobileTrackerRow.jsx | 16 +++++++-------- client/pages/TrackerPage.jsx | 27 +++++++++++++++----------- package.json | 2 +- 3 files changed, 25 insertions(+), 20 deletions(-) diff --git a/client/components/MobileTrackerRow.jsx b/client/components/MobileTrackerRow.jsx index 40f4356..4c82f2a 100644 --- a/client/components/MobileTrackerRow.jsx +++ b/client/components/MobileTrackerRow.jsx @@ -175,14 +175,6 @@ export const MobileTrackerRow = React.memo(function MobileTrackerRow({ row, year
- {row.autopay_enabled && ( - - AP - - )} + {row.autopay_enabled && ( + + AP + + )}
{row.monthly_notes && (

diff --git a/client/pages/TrackerPage.jsx b/client/pages/TrackerPage.jsx index 9faa8d8..859c43f 100644 --- a/client/pages/TrackerPage.jsx +++ b/client/pages/TrackerPage.jsx @@ -1016,9 +1016,6 @@ function Row({ row, year, month, refresh, index, onEditBill }) { {/* Bill name + category + monthly notes (if set) */}

- {row.autopay_enabled && ( - - )}
{row.website ? ( @@ -1039,6 +1036,14 @@ function Row({ row, year, month, refresh, index, onEditBill }) { {row.name} )} + {row.autopay_enabled && ( + + AP + + )}