Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(staking): temporarily hide stats #2024

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/staking/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CurrentStakeAccount } from "./current-stake-account";
import { HelpMenu } from "./help-menu";
import Logo from "./logo.svg";
import Logomark from "./logomark.svg";
import { Stats } from "./stats";
// import { Stats } from "./stats";
import { Link } from "../Link";
import { MaxWidth } from "../MaxWidth";
import { WalletButton } from "../WalletButton";
Expand All @@ -29,7 +29,7 @@ export const Header = ({
<Logo className="hidden h-full lg:block" />
<Logomark className="h-full lg:hidden" />
</Link>
<Stats className="hidden gap-4 sm:flex lg:gap-6" />
{/* <Stats className="hidden gap-4 sm:flex lg:gap-6" /> */}
</div>
<div className="flex flex-none flex-row items-stretch gap-4 md:gap-8">
<CurrentStakeAccount />
Expand All @@ -39,6 +39,6 @@ export const Header = ({
</MaxWidth>
</div>
</header>
<Stats className="border-b border-neutral-600/50 py-4 text-center sm:hidden" />
{/* <Stats className="border-b border-neutral-600/50 py-4 text-center sm:hidden" /> */}
</>
);
Loading