Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 4fe611e

Browse files
author
David Nguyen
committed
format
1 parent 1602460 commit 4fe611e

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/components/FullWidthCta.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ const FullWidthCta = props => {
5252
{ctas ? (
5353
<CTAWrapper>
5454
{ctas.map(cta =>
55-
contentfulModuleToComponent({
56-
...cta,
57-
})
58-
)}
55+
contentfulModuleToComponent({
56+
...cta,
57+
})
58+
)}
5959
</CTAWrapper>
6060
) : null}
6161
</FullWidthCtaInner>

src/components/HeroContainer.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ const HeroContainerComponent = props => {
4646
const isAbout = pathname === '/about/'
4747
const isFlask = pathname === '/flask/'
4848
const isInstitutions = pathname === '/institutions/'
49-
const isInstitutionalChild = pathname === '/institutions/portfolio/' || pathname === '/institutions/compliance/'
49+
const isInstitutionalChild =
50+
pathname === '/institutions/portfolio/' ||
51+
pathname === '/institutions/compliance/'
5052
const isCustody = pathname === '/institutions/custody/'
5153
const isThankYou = pathname === '/institutions/thank-you/'
5254
let hubspotWrapper
@@ -710,7 +712,7 @@ const HeroCTA = styled.div`
710712
711713
@media (max-width: ${({ theme }) => theme.device.tabletMediaMax}) {
712714
justify-content: center;
713-
715+
714716
.button {
715717
margin: 0 8px 16px;
716718
}

src/templates/PageLayout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const PageLayout = props => {
8484
})
8585
})
8686
// Detect Web3 Wallet
87-
if(typeof window.ethereum !== 'undefined') {
87+
if (typeof window.ethereum !== 'undefined') {
8888
trackCustomEvent({
8989
category: 'Web3 Wallet Detected',
9090
action: 'window.ethereum present',

0 commit comments

Comments
 (0)