From f137aee4361c4e781e030f04cddaecd683935eb3 Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Wed, 15 Jan 2025 14:33:02 +0000 Subject: [PATCH] Remove export keyword @ route - only default allowed (#18682) --- apps/web/app/org/[orgSlug]/[user]/[type]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/org/[orgSlug]/[user]/[type]/page.tsx b/apps/web/app/org/[orgSlug]/[user]/[type]/page.tsx index 2576c97df8..144e5f1f88 100644 --- a/apps/web/app/org/[orgSlug]/[user]/[type]/page.tsx +++ b/apps/web/app/org/[orgSlug]/[user]/[type]/page.tsx @@ -54,7 +54,7 @@ export const generateMetadata = async ({ params, searchParams }: PageProps) => { }; }; -export const Page = async (props: OrgTypePageProps) => { +const Page = async (props: OrgTypePageProps) => { if ((props as TeamTypePageProps)?.teamId) { return ; }