From 2b9c7e058a49668ebd5225ece743455c8c480c87 Mon Sep 17 00:00:00 2001 From: WodPachua Date: Mon, 21 Oct 2024 09:11:24 +0300 Subject: [PATCH] feat: Make currency in billing form configurable (#65) --- src/billing-form/billing-form.component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/billing-form/billing-form.component.tsx b/src/billing-form/billing-form.component.tsx index d2b8144..63a168d 100644 --- a/src/billing-form/billing-form.component.tsx +++ b/src/billing-form/billing-form.component.tsx @@ -268,7 +268,7 @@ const BillingForm: React.FC = ({ patientUuid, closeWorkspace } id={row.uuid} onClick={(e) => addItemToBill(e, row.uuid, row.Item, row.category, row.Price)} style={{ background: 'inherit', color: 'black' }}> - {row.Item} Qnty.{row.Qnty} Ksh.{row.Price} + {row.Item} Qnty.{row.Qnty} {defaultCurrency}.{row.Price} ))}