hide subcategory headers from the quick access section

This commit is contained in:
EthanHealy01 2025-08-15 20:08:30 +01:00
parent d2353c5db1
commit 3359361730

View File

@ -165,7 +165,7 @@ const ToolPicker = ({ selectedToolKey, onSelect, filteredTools, isSearching = fa
<Box ref={quickAccessRef} w="100%">
<Stack p="sm" gap="xs">
{quickSection?.subcategories.map(sc =>
renderToolButtons(sc, selectedToolKey, onSelect, quickSection?.subcategories.length === 1)
renderToolButtons(sc, selectedToolKey, onSelect, false)
)}
</Stack>
</Box>