odaptos_design_system 2.0.75 → 2.0.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13893,7 +13893,7 @@ const MultiSelectWithoutFilter = ({
13893
13893
  const [selectedOptions, setSelectedOptions] = useState([]);
13894
13894
  useEffect(() => {
13895
13895
  // Call API only if searchTerm and fetchOptions are defined
13896
- if (searchTerm && fetchOptions) {
13896
+ if (searchTerm.length >= 3 && fetchOptions) {
13897
13897
  fetchOptions(searchTerm);
13898
13898
  }
13899
13899
  }, [searchTerm]);