Skip to content

Commit

Permalink
invoice preview: fixed currency missing
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinafrombr committed Feb 20, 2025
1 parent ea7a54f commit a0e1743
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export const InvoicePreview = ({
</td>
<td>
{currency &&
formatCurrencyToDisplay(tax.totalTax, currency, false)}
formatCurrencyToDisplay(tax.totalTax, currency, true)}
</td>
</tr>
))}
Expand All @@ -344,10 +344,7 @@ export const InvoicePreview = ({
<span>{t(i18n)`Total`}</span>
</td>
<td>
<span>
{totalPrice?.toString()}
{currency}
</span>
<span>{totalPrice?.toString()}</span>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit a0e1743

Please sign in to comment.