There are no results for {rawValue}
)}
onSearch={(value) => {
if (!value) {
setOptions(availableOptions);
return;
}
setOptions(
availableOptions.filter((option) =>
option.label.toLowerCase().includes(value.toLowerCase()),
),
);
}}
onSelect={setSelectedOption}
/>