diff --git a/docs/src/components/page-actions.tsx b/docs/src/components/page-actions.tsx
index cc9c7882b..e4683b7ff 100644
--- a/docs/src/components/page-actions.tsx
+++ b/docs/src/components/page-actions.tsx
@@ -74,17 +74,11 @@ const optionVariants = cva(
export function ViewOptions({
markdownUrl,
- githubUrl,
}: {
/**
* A URL to the raw Markdown/MDX content of page
*/
markdownUrl: string,
-
- /**
- * Source file URL on GitHub
- */
- githubUrl: string,
}) {
const items = useMemo(() => {
const fullMarkdownUrl =
@@ -201,7 +195,7 @@ export function ViewOptions({
icon: ,
},
];
- }, [githubUrl, markdownUrl]);
+ }, [markdownUrl]);
return (