Skip to content

Commit

Permalink
Develop Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tcheee authored Nov 28, 2024
1 parent 250952d commit 581ba91
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/components/Menus/VerticalMenu/VerticalTabs.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use client';
import { useActiveTabStore } from '@/stores/activeTab';
import { useAccount } from '@lifi/wallet-management';
import { Tooltip, useMediaQuery } from '@mui/material';
import type { Theme } from '@mui/material/styles';
import { useGetNFT } from '../../../wash/hooks/useGetNFT';
import { useVerticalTabs } from './useVerticalTabs';
import { VerticalTab, VerticalTabsContainer } from './VerticalTabs.style';

Expand All @@ -14,13 +12,10 @@ export const VerticalTabs = () => {
setActiveTab(newValue);
};
const verticalTabs = useVerticalTabs();
const data = useGetNFT();
const { account } = useAccount();

return (
<VerticalTabsContainer
value={!isDesktop ? false : activeTab}
sx={{ ...(data.hasNFT && account?.address && { marginTop: '140px' }) }}
orientation="vertical"
onChange={handleChange}
aria-label="vertical-tabs"
Expand Down

0 comments on commit 581ba91

Please sign in to comment.