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 83efa05 commit 983d2f0Copy full SHA for 983d2f0
apps/docs/src/app/docs/[[...slug]]/page.tsx
@@ -20,7 +20,16 @@ export default async function Page(props: PageProps<"/docs/[[...slug]]">) {
20
const MDXContent = page.data.body;
21
22
return (
23
- <DocsPage toc={page.data.toc} full={page.data.full}>
+ <DocsPage
24
+ toc={page.data.toc}
25
+ full={page.data.full}
26
+ editOnGithub={{
27
+ owner: "macalinao",
28
+ repo: "coda",
29
+ sha: "master",
30
+ path: `apps/docs/content/docs/${params.slug?.join("/") || "index"}.mdx`,
31
+ }}
32
+ >
33
<DocsTitle>{page.data.title}</DocsTitle>
34
<DocsDescription>{page.data.description}</DocsDescription>
35
<DocsBody>
0 commit comments