diff --git a/src/components/layouts/Dashboard/modules/Nav/Nav.tsx b/src/components/layouts/Dashboard/modules/Nav/Nav.tsx index 9742469..a31e8b8 100644 --- a/src/components/layouts/Dashboard/modules/Nav/Nav.tsx +++ b/src/components/layouts/Dashboard/modules/Nav/Nav.tsx @@ -4,17 +4,13 @@ import Link from 'next/link'; import { useRouter } from 'next/router'; import { useEffect } from 'react'; import { useMoralis } from 'react-moralis'; -import { Avatar } from 'web3uikit'; +import { Avatar, PopoverElement } from 'web3uikit'; import { getEllipsesText } from '../../../../../utils/utils'; const Nav = () => { const { isAuthenticated, logout, user } = useMoralis(); const router = useRouter(); - // if (user) { - // console.log(getEllipsesText(user?.get('ethAddress'))); - // } - const navigation = [ { name: '🧾 Transactions', href: '#' }, { name: '💰 Balance', href: '#' }, @@ -64,22 +60,29 @@ const Nav = () => {