Skip to content

Commit

Permalink
fix: Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Karelian Pie <devkarelianpie@gmail.com>
  • Loading branch information
karelianpie committed Sep 13, 2023
1 parent e889437 commit 8b07e89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {cloneElement, Fragment, useEffect, useMemo, useState} from 'react
import assert from 'assert';
import {useConnect, usePublicClient} from 'wagmi';
import {Listbox, Transition} from '@headlessui/react';
import {useAccountModal, useChainModal,useConnectModal} from '@rainbow-me/rainbowkit';
import {useAccountModal, useChainModal, useConnectModal} from '@rainbow-me/rainbowkit';
import {useIsMounted} from '@react-hookz/web';

import {useWeb3} from '../contexts/useWeb3.js';
Expand Down Expand Up @@ -37,7 +37,7 @@ function Navbar({nav, linkComponent = <a />, currentPathName}: TNavbar): ReactEl
key={option.path}
target={option.target}
href={option.path}>
<p className={`yearn--header-nav-item ${currentPathName === option.path ? 'active' : '' }`}>
<p className={`yearn--header-nav-item ${currentPathName === option.path ? 'active' : ''}`}>
{option.label}
</p>
</Link>
Expand Down

0 comments on commit 8b07e89

Please sign in to comment.