Remove export keyword @ route - only default allowed (#18682)

This commit is contained in:
Alex van Andel
2025-01-15 14:33:02 +00:00
committed by GitHub
parent 4f494d5a32
commit f137aee436
@@ -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 <TeamTypePage {...(props as TeamTypePageProps)} />;
}