From d8511e4dd21851c7df51dc977b4b98b1124f06e3 Mon Sep 17 00:00:00 2001 From: chaewon-huh Date: Thu, 25 Jun 2026 16:37:42 +0900 Subject: [PATCH] fix: remove docs edit link Remove the page-level GitHub edit link from the docs footer while keeping last-updated metadata and social footer links intact. Co-Authored-By: Codex --- src/components/footer.tsx | 27 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 01be429..179a8d0 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,6 +1,4 @@ import React from "react"; -import { Link } from "./link"; -import { Icon } from "./icon"; import { FooterUtilityRow } from "./footer-utility-row"; interface FooterProps { @@ -8,30 +6,15 @@ interface FooterProps { lastModified?: string; } -export const Footer: React.FC = ({ - gitHubEditLink, - lastModified, -}) => { +export const Footer: React.FC = ({ lastModified }) => { return (