🐛 arrow showing over player info

This commit is contained in:
Chase Manning 2023-10-03 18:08:48 +01:00
commit fd13404652

View file

@ -271,13 +271,15 @@ const Menu = ({
{item.label}
{item.value !== undefined && <Bold>{item.value}</Bold>}
</Button>
<ArrowContainer>
<Arrow
disabled={disabled}
menu
show={activeIndex === index}
/>
</ArrowContainer>
{!noSelect && (
<ArrowContainer>
<Arrow
disabled={disabled}
menu
show={activeIndex === index}
/>
</ArrowContainer>
)}
</li>
);
})}