Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
esaminu committed May 10, 2022
1 parent 763358a commit bcb0c17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/frontend/src/components/navigation/NavLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ import { Translate } from 'react-localize-redux';
import { NavLink } from 'react-router-dom';
import styled from 'styled-components';

import USN_LOGO from '../../images/USN-logo.png';
import { CREATE_USN_CONTRACT, USN_BUTTON, DONATE_TO_UKRAINE } from '../../../../../features';
import { IS_MAINNET } from '../../config'
import { IS_MAINNET } from '../../config';
import USN_LOGO from '../../images/USN-logo.png';
import { Mixpanel } from '../../mixpanel/index';
import DonateToUkraineIcon from '../svg/DonateToUkraineIcon';
import HelpIcon from '../svg/HelpIcon';
import SwapIconTwoArrows from '../svg/SwapIconTwoArrows';
import UserIcon from '../svg/UserIcon';
import VaultIcon from '../svg/VaultIcon';
import WalletIcon from '../svg/WalletIcon';
import DonateToUkraineIcon from '../svg/DonateToUkraineIcon';

const Container = styled.div`
display: flex;
Expand Down Expand Up @@ -143,7 +143,7 @@ const NavLinks = () => (
<NavLink
to={`/send-money/${IS_MAINNET ? 'ukraine' : 'ukraine.testnet'}`}
activeClassName="selected"
onClick={() => Mixpanel.track("Click Donate button on nav")}
onClick={() => Mixpanel.track('Click Donate button on nav')}
>
<DonateToUkraineIcon />
<Translate id="link.donateToUkraine" />
Expand Down

0 comments on commit bcb0c17

Please sign in to comment.