From b65cc72040858423c502c188fbee009ba58f971a Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 13 Nov 2025 17:43:15 +0800 Subject: [PATCH] Added storage for bldg additional --- src/stores/pdfinfo.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stores/pdfinfo.ts b/src/stores/pdfinfo.ts index fcd7360..85842fc 100644 --- a/src/stores/pdfinfo.ts +++ b/src/stores/pdfinfo.ts @@ -25,3 +25,7 @@ export const _totalUnits = atom(0) export const _floorArea = atom(0) export const _additional = atom(false) +export const _additionalFeeList = atom([]) +export const _additionalCodeList = atom([]) +export const _additionalAmountList = atom([]) +export const _additionalUnitList = atom([])