Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
refactor: remove unused 'lottie' prop from LandingHero component
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsdls committed Jun 18, 2024
1 parent 8d243b0 commit 9d24914
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/components/landing-pages/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface LandingHeroProps {
trackingCategory: string;
ctaText?: string;
ctaLink?: string;
lottie?: {};
gradient: string;
image?: StaticImageData;
mobileImage?: StaticImageData;
Expand All @@ -31,7 +30,6 @@ export const LandingHero: React.FC<LandingHeroProps> = ({
ctaText,
ctaLink,
gradient,
lottie,
image,
mobileImage,
noCta,
Expand Down Expand Up @@ -83,13 +81,6 @@ export const LandingHero: React.FC<LandingHeroProps> = ({
contactUsLink={contactUsLink}
/>
</Flex>
<Flex maxH="500px">
<LandingDesktopMobileImage
lottie={lottie}
image={image}
mobileImage={mobileImage}
/>
</Flex>
</Container>
<LandingDesktopMobileImage image={image} mobileImage={mobileImage} />
</Flex>
Expand Down

0 comments on commit 9d24914

Please sign in to comment.