From dce4ef0f5166f01edd886882df9df03ccde6a85d Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Tue, 5 May 2026 17:21:50 +0530 Subject: [PATCH] fix(docs): drop tabMode="top" that hid article body MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fumadocs UI 16.8.5 places the layout tab strip in [grid-area:main], the same grid cell as the article, with z-10 and bg-fd-background — covering DocsTitle and the MDX body. Default tabMode ("auto") puts the section list in the sidebar header dropdown instead, matching the original "promote top sections to sidebar tabs" intent. --- docs/src/app/docs/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/app/docs/layout.tsx b/docs/src/app/docs/layout.tsx index 11034b6..efeef54 100644 --- a/docs/src/app/docs/layout.tsx +++ b/docs/src/app/docs/layout.tsx @@ -4,7 +4,7 @@ import { source } from "@/lib/source"; export default function Layout({ children }: LayoutProps<"/docs">) { return ( - + {children} );