diff --git a/src/app/(main)/profile/layout.tsx b/src/app/(main)/profile/layout.tsx new file mode 100644 index 0000000..68d5b21 --- /dev/null +++ b/src/app/(main)/profile/layout.tsx @@ -0,0 +1,9 @@ +export const dynamic = "force-dynamic"; + +export default function ProfileLayout({ + children, +}: { + children: React.ReactNode; +}) { + return children; +}