From 8d1a8883f82d83800a9fd0f70e746bb629e7f645 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sun, 31 May 2026 11:26:04 -0500 Subject: [PATCH] fix 3 column --- src/services/accounting-service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/accounting-service.js b/src/services/accounting-service.js index af2951f..39ccb18 100644 --- a/src/services/accounting-service.js +++ b/src/services/accounting-service.js @@ -437,7 +437,7 @@ async function getTaxSummary({ startDate, endDate, accountingMethod = 'Accrual' { value: 'Total' }, { value: amounts.taxableSales.toFixed(2) }, { value: amounts.taxCollected.toFixed(2) }, - { value: '' } + { value: `${ratePct}%` } ] } };