Skip to content

Commit

Permalink
Fix Hero Image lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JJdeGroot committed Jan 2, 2025
1 parent 59954cb commit 61b6235
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ export function Hero({ title, description, prefix, suffix, image, imageDark, alt
<div className="flex flex-col flex-1 md:items-center md:flex-row">
{!!image && (
<div className="relative self-stretch grow-0 mb-8 mt-0 md:my-auto md:mr-8 md:h-auto shrink-0">
<Image
src={image}
dark={imageDark}
alt={alt}
className="min-w-16 min-h-16 md:min-w-24 md:min-h-24" />
<Image src={image} dark={imageDark} alt={alt} className="min-w-16 min-h-16 md:min-w-24 md:min-h-24" />
</div>
)}
<div className="min-w-0">
Expand Down

0 comments on commit 61b6235

Please sign in to comment.