Skip to content
Merged
Changes from 2 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
7 changes: 1 addition & 6 deletions apps/insights/src/components/Root/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { AppShell } from "@pythnetwork/component-library/AppShell";
import { lookup as lookupPublisher } from "@pythnetwork/known-publishers";
import { NuqsAdapter } from "nuqs/adapters/next/app";
import type { ReactNode } from "react";
import { Suspense } from "react";

import {
ENABLE_ACCESSIBILITY_REPORTING,
Expand Down Expand Up @@ -34,11 +33,7 @@ export const Root = ({ children }: Props) => (
enableAccessibilityReporting={ENABLE_ACCESSIBILITY_REPORTING}
providers={[NuqsAdapter, LivePriceDataProvider]}
tabs={TABS}
extraCta={
<Suspense fallback={<SearchButtonImpl isLoading />}>
<SearchButton />
</Suspense>
}
extraCta={<SearchButton />}
>
{children}
</AppShell>
Expand Down
Loading