diff --git a/src/components/ui/InteractiveMenu.tsx b/src/components/ui/InteractiveMenu.tsx index 36386af..230cd1b 100644 --- a/src/components/ui/InteractiveMenu.tsx +++ b/src/components/ui/InteractiveMenu.tsx @@ -58,7 +58,9 @@ export function InteractiveMenu({ items, accentColor, onSelect }: InteractiveMen key={item.label} className={`interactive-menu__item${isActive ? 'active' : ''}`} onClick={() => handleClick(index)} - ref={(el) => (itemRefs.current[index] = el)} + ref={(el) => { + itemRefs.current[index] = el; + }} style={{ '--lineWidth': '0px' } as React.CSSProperties} aria-label={item.label} >