Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
guitavano committed Apr 17, 2024
1 parent 4ed6411 commit 8548f53
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,21 @@ function Footer({
mobileApps = { apple: "/", android: "/" },
regionOptions = { currency: [], language: [] },
extraLinks = [],
backToTheTop
backToTheTop,
}: Props) {
const _logo = <Logo logo={logo} />;
const _newsletter = <Newsletter
content={newsletter}
/>
const _sectionLinks = <FooterItems
sections={sections}
justify={false}
/>
const _social = <Social content={social}/>;
const _newsletter = (
<Newsletter
content={newsletter}
/>
);
const _sectionLinks = (
<FooterItems
sections={sections}
justify={false}
/>
);
const _social = <Social content={social} />;
const _payments = <PaymentMethods content={payments} />;
const _apps = <MobileApps content={mobileApps} />;
const _region = <RegionSelector content={regionOptions} />;
Expand Down

0 comments on commit 8548f53

Please sign in to comment.