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.
@@ -13901,7 +13901,7 @@ const MultiSelectWithoutFilter = ({
13901
13901
  const [selectedOptions, setSelectedOptions] = React.useState([]);
13902
13902
  React.useEffect(() => {
13903
13903
  // Call API only if searchTerm and fetchOptions are defined
13904
- if (searchTerm && fetchOptions) {
13904
+ if (searchTerm.length >= 3 && fetchOptions) {
13905
13905
  fetchOptions(searchTerm);
13906
13906
  }
13907
13907
  }, [searchTerm]);