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 6adee5d commit 8ad2a70Copy full SHA for 8ad2a70
apps/developer-hub/src/components/Pages/BasePage/index.tsx
@@ -10,7 +10,7 @@ import { notFound } from "next/navigation";
10
11
export function BasePage(props: { params: { slug: string[] } }) {
12
const page = source.getPage(props.params.slug);
13
- if (!page) return notFound();
+ if (!page) notFound();
14
15
const MDX = page.data.body;
16
0 commit comments