diff --git a/src/pages/CreateInvoice.tsx b/src/pages/CreateInvoice.tsx index feb2961ea..cd37b9ce3 100644 --- a/src/pages/CreateInvoice.tsx +++ b/src/pages/CreateInvoice.tsx @@ -1002,9 +1002,12 @@ const CreateInvoice = () => { ? null : !hasAnyFee ? '-' - : intlFormatNumber(taxToDisplay.amount, { - currency, - })} + : intlFormatNumber( + deserializeAmount(taxToDisplay.amount || 0, currency), + { + currency, + }, + )} )