Skip to content

Commit

Permalink
Fix CarList.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Jan 21, 2025
1 parent d73d58c commit d13575e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions backend/src/components/CarList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -524,12 +524,14 @@ const CarList = ({
</div>
</Tooltip>
</li>
<li className="car-coming-soon">
<div className="car-info-list-item">
<CheckIcon />
<span className="car-info-list-text">{strings.COMING_SOON}</span>
</div>
</li>
{car.comingSoon && (
<li className="car-coming-soon">
<div className="car-info-list-item">
<CheckIcon />
<span className="car-info-list-text">{strings.COMING_SOON}</span>
</div>
</li>
)}
</>
)}
{car.cancellation > -1 && (
Expand Down

0 comments on commit d13575e

Please sign in to comment.