Skip to content

Commit

Permalink
fix: header import/order
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutipanjwani committed Sep 17, 2024
1 parent f2613e4 commit 405ee9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use client';

import { useDynamicContext } from '@dynamic-labs/sdk-react-core';
import dynamic from 'next/dynamic';
import Link from 'next/link';
Expand All @@ -9,10 +10,10 @@ import { getNetworkNameFromPath } from '@/lib';
import { Banner, Menu } from '@/components/global';
import { Footer } from '@/components/layout';
import { Logo } from '@/components/ui';
import chainStatusStore from '@/store/chainStatus.store';

// import { useGetChain } from '@/hooks';
// import ConnectWallet from '@/components/web3/ConnectWallet';
import chainStatusStore from '@/store/chainStatus.store';

const ConnectWallet = dynamic(() => import('@/components/web3/ConnectWallet'), {
ssr: false,
Expand Down

0 comments on commit 405ee9e

Please sign in to comment.