Skip to content

Commit

Permalink
fix ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
cameroncaci committed Nov 25, 2024
1 parent 8a06cd1 commit c62785e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Customer/Review/OrdersTable/OrdersTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const OrdersTable = ({
<td>{hasDependents ? 'Yes' : 'No'}</td>
</tr>
{/* Group conditionally rendered OCONUS fields */}
{(accompaniedTour || dependentsUnderTwelve || dependentsTwelveAndOver) && (
{(accompaniedTour || dependentsUnderTwelve > 0 || dependentsTwelveAndOver > 0) && (
<>
<tr>
<th scope="row">Accompanied tour</th>
Expand Down

0 comments on commit c62785e

Please sign in to comment.