We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4274644 commit 549a38cCopy full SHA for 549a38c
src/app/projects/[name]/page.tsx
@@ -24,7 +24,7 @@ export async function generateMetadata({
24
};
25
}
26
27
-export const ProjectPage = async ({ params }: { params: Props }) => {
+export default async function ProjectPage({ params }: { params: Props }) {
28
const { name } = await params;
29
const project = await getProjectByName(name);
30
@@ -59,6 +59,4 @@ export const ProjectPage = async ({ params }: { params: Props }) => {
59
</Stack>
60
</Container>
61
);
62
-};
63
-
64
-export default ProjectPage;
+}
0 commit comments