Fix spacing between FAQ description and first category heading

This commit is contained in:
Mary Kate Fain
2026-03-07 19:20:04 -06:00
parent d328144f8d
commit a41fa2833a
+1 -1
View File
@@ -116,7 +116,7 @@ export function HelpFAQSection({ categories, items, hideHeadings, className }: H
<Fragment key={category.id}>
{/* Category heading */}
{!hideHeadings && (
<div className="px-1 pt-6 pb-2 first:pt-0">
<div className={`px-1 pb-2 ${catIndex === 0 ? 'pt-2' : 'pt-6'}`}>
<h3 className="text-sm font-bold text-muted-foreground uppercase tracking-wider">
{category.label}
</h3>