Skip to content

Commit 3db8667

Browse files
committed
fix dom rendering
1 parent 4457273 commit 3db8667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/web/src/components/verifyVehicle/verifyVehicle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const VerifyVehicle: React.FC<VerifyVehicleProps> = ({
4646
return (
4747
<div className="container add-vehicle-container">
4848
<Row justify="center">
49-
{vehicles.length && (
49+
{vehicles.length > 0 && (
5050
<Col xs={24} md={11}>
5151
<Card
5252
title="Register New Vehicle"

0 commit comments

Comments
 (0)