OrderPayment - update discount condition
This commit is contained in:
parent
aefb339861
commit
1047762aa6
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ const OrderPayment: React.FC<OrderPaymentProps> = props => {
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{maybe(() => order && order.discount.amount !== 0) && (
|
{order?.discount?.amount > 0 && (
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
|
Loading…
Reference in a new issue