{selectedOptions.length > 0 && (
<>
{/* list-style: none removes role="list" in Safari */}
{/* eslint-disable-next-line jsx-a11y/no-redundant-roles */}
{selectedOptions.map(({ label, value }) => (
// This stops the underlying toggle collapsing the popover when interactive with Tags
// eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions, jsx-a11y/click-events-have-key-events
- e.stopPropagation()}>
onRemoveOption(value),
}}
>
{label}
))}
{
e.stopPropagation()
onRemoveAllOptions()
}}
/>
>
)}