From b8f5f58fc57ae469b67bf5dc5b0cacf84af91a24 Mon Sep 17 00:00:00 2001 From: Benny Date: Thu, 29 Jan 2026 11:41:38 -0600 Subject: [PATCH] Remove unused isFullyFunded variable --- web/src/pages/DashboardPage.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/web/src/pages/DashboardPage.tsx b/web/src/pages/DashboardPage.tsx index d0a610a..18f9765 100644 --- a/web/src/pages/DashboardPage.tsx +++ b/web/src/pages/DashboardPage.tsx @@ -379,12 +379,6 @@ export default function DashboardPage() { } } - // Get plan details to check if fully funded - const planDetail = data.fixedPlans.find(p => p.id === first.id); - const totalCents = planDetail?.totalCents ?? 0; - const fundedCents = planDetail?.fundedCents ?? 0; - const isFullyFunded = fundedCents >= totalCents; - await openDueItem(first); // Store queue for potential future bills