fix: force-dynamic on explore page to prevent static prerender crash with useSearchParams

This commit is contained in:
Christopher Mayor
2026-04-28 08:39:13 -07:00
parent 776f121eae
commit 54879f3ab5

View File

@@ -0,0 +1,9 @@
export const dynamic = "force-dynamic";
export default function ExploreLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}