diff --git a/ui/litellm-dashboard/src/components/DocsMenu.tsx b/ui/litellm-dashboard/src/components/DocsMenu.tsx
index 39ac18f9e80..81958f70683 100644
--- a/ui/litellm-dashboard/src/components/DocsMenu.tsx
+++ b/ui/litellm-dashboard/src/components/DocsMenu.tsx
@@ -12,18 +12,6 @@ interface DocsMenuProps {
className?: string;
}
-/**
- * A dropdown menu for multiple documentation links.
- * Linear-style: Single "Docs" button that expands to show multiple relevant links.
- *
- * @example
- *
- * Docs
- *
- */
export const DocsMenu: React.FC = ({ items, children = "Docs", className = "" }) => {
const [isOpen, setIsOpen] = useState(false);
const menuRef = useRef(null);