fix: force-dynamic on profile page to prevent static prerender crash

This commit is contained in:
Christopher Mayor
2026-04-28 08:13:50 -07:00
parent 3f3932082c
commit e1d97178a1

View File

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