Skip to content

Commit

Permalink
feat: Make currency in billing form configurable (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
WodPachua authored Oct 21, 2024
1 parent d770db6 commit 2b9c7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/billing-form/billing-form.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const BillingForm: React.FC<BillingFormProps> = ({ 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}
</Button>
</li>
))}
Expand Down

0 comments on commit 2b9c7e0

Please sign in to comment.