Skip to content

Commit

Permalink
fix: removed classname when icon not shown
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 17, 2024
1 parent 4488366 commit ea30a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/landing-page/create-production.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const CreateProduction = () => {
required: "Line name is required",
minLength: 1,
})}
className="additional-line"
className={index === fields.length - 1 ? "additional-line" : ""}
autoComplete="off"
placeholder="Line Name"
/>
Expand Down

0 comments on commit ea30a72

Please sign in to comment.