Skip to content

Commit

Permalink
fix(dunning): wrong payment terms (#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
keellyp authored Oct 9, 2024
1 parent a8d6ba2 commit 8a306a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export const EmailPreview: FC<EmailPreviewProps> = ({
<Text color="textSecondary">
{translate(
'text_66b378e748cda1004ff00db3',
{ netPaymentTerm: customer?.netPaymentTerm || organization?.netPaymentTerm },
customer?.netPaymentTerm || organization?.netPaymentTerm,
{ netPaymentTerm: customer?.netPaymentTerm ?? organization?.netPaymentTerm },
customer?.netPaymentTerm ?? organization?.netPaymentTerm,
)}
</Text>
<Text color="textSecondary">{translate('text_66b378e748cda1004ff00db4')}</Text>
Expand Down

0 comments on commit 8a306a0

Please sign in to comment.