fix: add missing > to close bin rail div opening tag

Missing > after title attribute caused Babel parse error,
preventing Library component from being registered globally.
This commit is contained in:
Zac Gaetano 2026-05-24 14:46:36 -04:00
parent 0ebc7ef777
commit a5ab57d144

View file

@ -260,8 +260,8 @@ function Library({ navigate, onOpenAsset, openProject, onClearProject }) {
onDrop={function(e) { onBinDrop(b.id, e); }}
onDragLeave={onBinDragLeave}
style={{ cursor: 'pointer' }}
title={isActive ? 'Click to clear bin filter' : 'Filter to this bin'}
<Icon name={binIcon(b.icon)} size={13} className="rail-icon" />
title={isActive ? 'Click to clear bin filter' : 'Filter to this bin'}>
<Icon name={binIcon(b.icon)} size={13} className="rail-icon" />
<span>{b.name}</span>
<span className="rail-count">{b.count}</span>
</div>