diff --git a/site/docs/components/landing/ComponentPreview.tsx b/site/docs/components/landing/ComponentPreview.tsx index 01e7370f59..0283cdc7a7 100644 --- a/site/docs/components/landing/ComponentPreview.tsx +++ b/site/docs/components/landing/ComponentPreview.tsx @@ -73,7 +73,7 @@ function ComponentPreview() { const [copiedIndex, setCopiedIndex] = useState(null); const [activeTab, setActiveTab] = useState(0); const [activeSubTab, setActiveSubTab] = useState<'preview' | 'code'>( - 'preview' + 'preview', ); const { theme } = useTheme(); @@ -186,7 +186,7 @@ function PreviewContainer({ useEffect(() => { getHighlightedCode({ code: components[activeTab].code, theme }).then( - setHighlightedCode + setHighlightedCode, ); }, [activeTab, theme]); @@ -230,7 +230,7 @@ function PreviewContainer({ activeSubTab === 'preview' ? 'flex' : 'hidden' } h-[500px] w-full items-center justify-center md:h-[600px]`} > -
+