feat: add "use client" directive to sidebar-separator component for client-side rendering

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-08 15:01:15 -07:00
parent b8d6cd4810
commit 7276ec856e

View file

@ -1,3 +1,5 @@
"use client";
import type { Separator } from "fumadocs-core/page-tree";
export function SidebarSeparator({ item }: { item: Separator }) {