diff --git a/src/components/order/OrderTotals.tsx b/src/components/order/OrderTotals.tsx index 6f52c16a..76f0c044 100644 --- a/src/components/order/OrderTotals.tsx +++ b/src/components/order/OrderTotals.tsx @@ -63,9 +63,8 @@ export function OrderTotals({ order }: OrderTotalsProps) { ) : null} - {order.amount_due && - order.amount_due !== order.total && - Number.parseFloat(order.amount_due) > 0 && ( + {Number.parseFloat(order.amount_due) > 0 && + order.amount_due !== order.total && (