From d0d7ce243bb516b52750448bcacf8449300dae51 Mon Sep 17 00:00:00 2001 From: calebyhan Date: Tue, 30 Jun 2026 11:33:54 -0400 Subject: [PATCH] Fix budget currency formatting to show cents instead of rounding to whole dollars (#168) --- frontend/src/app/funding/budget/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/funding/budget/page.tsx b/frontend/src/app/funding/budget/page.tsx index cfcb5dd..a5367fe 100644 --- a/frontend/src/app/funding/budget/page.tsx +++ b/frontend/src/app/funding/budget/page.tsx @@ -69,7 +69,8 @@ export default function FundingBudgetPage() { return new Intl.NumberFormat("en-US", { style: "currency", currency: "USD", - maximumFractionDigits: 0, + minimumFractionDigits: 2, + maximumFractionDigits: 2, }).format(value); }