From 80e1edaf83b9f4b20a6854471abe7d67cd89f5ac Mon Sep 17 00:00:00 2001 From: Alexandru Cambose Date: Sun, 17 Aug 2025 17:41:52 +0200 Subject: [PATCH 1/2] fix(insights): remove suspense from props --- apps/insights/src/components/Root/index.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/insights/src/components/Root/index.tsx b/apps/insights/src/components/Root/index.tsx index 27537b4bea..40d60b2140 100644 --- a/apps/insights/src/components/Root/index.tsx +++ b/apps/insights/src/components/Root/index.tsx @@ -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, @@ -35,9 +34,7 @@ export const Root = ({ children }: Props) => ( providers={[NuqsAdapter, LivePriceDataProvider]} tabs={TABS} extraCta={ - }> - - + } > {children} From b3f9c31678a2d6798e9acfb1156303d57b579e43 Mon Sep 17 00:00:00 2001 From: Alexandru Cambose Date: Sun, 17 Aug 2025 23:05:35 +0200 Subject: [PATCH 2/2] fix: formatting --- apps/insights/src/components/Root/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/insights/src/components/Root/index.tsx b/apps/insights/src/components/Root/index.tsx index 40d60b2140..d2ccaae680 100644 --- a/apps/insights/src/components/Root/index.tsx +++ b/apps/insights/src/components/Root/index.tsx @@ -33,9 +33,7 @@ export const Root = ({ children }: Props) => ( enableAccessibilityReporting={ENABLE_ACCESSIBILITY_REPORTING} providers={[NuqsAdapter, LivePriceDataProvider]} tabs={TABS} - extraCta={ - - } + extraCta={} > {children}