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>
|
||||
</tr>
|
||||
{maybe(() => order && order.discount.amount !== 0) && (
|
||||
{order?.discount?.amount > 0 && (
|
||||
<tr>
|
||||
<td>
|
||||
<FormattedMessage
|
||||
|
|
Loading…
Reference in a new issue