We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9233ff commit 80e1edaCopy full SHA for 80e1eda
apps/insights/src/components/Root/index.tsx
@@ -2,7 +2,6 @@ import { AppShell } from "@pythnetwork/component-library/AppShell";
2
import { lookup as lookupPublisher } from "@pythnetwork/known-publishers";
3
import { NuqsAdapter } from "nuqs/adapters/next/app";
4
import type { ReactNode } from "react";
5
-import { Suspense } from "react";
6
7
import {
8
ENABLE_ACCESSIBILITY_REPORTING,
@@ -35,9 +34,7 @@ export const Root = ({ children }: Props) => (
35
34
providers={[NuqsAdapter, LivePriceDataProvider]}
36
tabs={TABS}
37
extraCta={
38
- <Suspense fallback={<SearchButtonImpl isLoading />}>
39
- <SearchButton />
40
- </Suspense>
+ <SearchButton />
41
}
42
>
43
{children}
0 commit comments