From 9354af8cb85cfd669bcebd526128382b14b2ba65 Mon Sep 17 00:00:00 2001 From: null Date: Sun, 7 Jun 2026 17:50:17 -0500 Subject: [PATCH] fix(tracker): tracker page adjustments --- client/pages/TrackerPage.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/pages/TrackerPage.jsx b/client/pages/TrackerPage.jsx index 2cf688e..97b39a2 100644 --- a/client/pages/TrackerPage.jsx +++ b/client/pages/TrackerPage.jsx @@ -492,7 +492,6 @@ export default function TrackerPage() { || filters.debt || hasSort ); - const searchResultLabel = `${filteredRows.length} of ${rows.length} shown`; const searchSortLabel = hasSort ? `sorted by ${TRACKER_SORT_LABELS[sortKey]} ${sortDir === TRACKER_SORT_ASC ? 'ascending' : 'descending'}` : null; const resetFilters = () => { updateParams({ q: null, fc: null, cy: null, ap: null, b1: null, b2: null, un: null, ov: null, de: null, sort: null, dir: null }); @@ -549,6 +548,8 @@ export default function TrackerPage() { }) : filteredRows; + const searchResultLabel = `${filteredRows.length} of ${rows.length} shown`; + const first = sortedRows.filter(r => r.bucket === '1st'); const second = sortedRows.filter(r => r.bucket === '15th'); const reorderEnabled = !hasFilters && !loading && !isError && !pinUpcoming;