diff --git a/src/app/components/SectionDropdown.tsx b/src/app/components/SectionDropdown.tsx index f188cd3..e31e155 100644 --- a/src/app/components/SectionDropdown.tsx +++ b/src/app/components/SectionDropdown.tsx @@ -2,7 +2,7 @@ import { Fragment } from 'react'; import { Doc, DocsStructure } from '../types/types'; import styles from './SectionDropdown.module.css'; -function SectionDropdownGroup({ doc }: { doc: Doc }) { +function SectionDropdownOption({ doc }: { doc: Doc }) { return ( {doc.copy && doc.example && ( @@ -50,7 +50,10 @@ export default function SectionDropdown({ > {version.docs.map(doc => { return ( - + ); })}