Skip to content

Commit

Permalink
πŸ“ˆ Add utm for footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Jan 12, 2024
1 parent 2d2bfe3 commit d689a66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const FooterSection = ({
src={getAssetPath(
`/social-elements/v2/twitter-large-${intl.locale}.png`
)}
href="https://twitter.com/likerland"
href={wrapUtm("https://twitter.com/likerland")}

Check failure on line 87 in src/components/footer.tsx

View workflow job for this annotation

GitHub Actions / Build, lint, and test

Replace `"https://twitter.com/likerland"` with `'https://twitter.com/likerland'`
/>
<MjmlSocial
mode="horizontal"
Expand All @@ -99,7 +99,7 @@ export const FooterSection = ({
{socialElements.map(({ key, href, assetPath }) => (
<MjmlSocialElement
key={key}
href={href}
href={wrapUtm(href)}
src={getAssetPath(assetPath)}
>
{null}
Expand Down

0 comments on commit d689a66

Please sign in to comment.