tc-dazzle-ui 1.7.0 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -456,9 +456,7 @@ const Sidebar = ({ sections, activeItemId, onItemClick, onSettingsClick, onExpan
456
456
  const [expandedSections, setExpandedSections] = useState(() => {
457
457
  const initialExpanded = new Set();
458
458
  sections.forEach((section) => {
459
- if (section.defaultExpanded !== false) {
460
- initialExpanded.add(section.id);
461
- }
459
+ initialExpanded.add(section.id);
462
460
  });
463
461
  return initialExpanded;
464
462
  });