Skip to content

Commit 0cc2380

Browse files
authored
Merge pull request #2024 from cprussin/hide-stats
chore(staking): temporarily hide stats
2 parents 1730be9 + 58ba72a commit 0cc2380

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/staking/src/components/Header/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { CurrentStakeAccount } from "./current-stake-account";
55
import { HelpMenu } from "./help-menu";
66
import Logo from "./logo.svg";
77
import Logomark from "./logomark.svg";
8-
import { Stats } from "./stats";
8+
// import { Stats } from "./stats";
99
import { Link } from "../Link";
1010
import { MaxWidth } from "../MaxWidth";
1111
import { WalletButton } from "../WalletButton";
@@ -29,7 +29,7 @@ export const Header = ({
2929
<Logo className="hidden h-full lg:block" />
3030
<Logomark className="h-full lg:hidden" />
3131
</Link>
32-
<Stats className="hidden gap-4 sm:flex lg:gap-6" />
32+
{/* <Stats className="hidden gap-4 sm:flex lg:gap-6" /> */}
3333
</div>
3434
<div className="flex flex-none flex-row items-stretch gap-4 md:gap-8">
3535
<CurrentStakeAccount />
@@ -39,6 +39,6 @@ export const Header = ({
3939
</MaxWidth>
4040
</div>
4141
</header>
42-
<Stats className="border-b border-neutral-600/50 py-4 text-center sm:hidden" />
42+
{/* <Stats className="border-b border-neutral-600/50 py-4 text-center sm:hidden" /> */}
4343
</>
4444
);

0 commit comments

Comments
 (0)