(v: string)
| 746 | const anySelected = value.length > 0; |
| 747 | |
| 748 | const getLabelForValue = (v: string) => |
| 749 | options.find((o) => o.value === v)?.label ?? v; |
| 750 | |
| 751 | const toggleValue = (v: string) => { |
| 752 | if (value.includes(v)) { |
no outgoing calls
no test coverage detected