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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.75",
2
+ "version": "2.0.76",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -172,7 +172,7 @@ export const MultiSelectWithoutFilter = ({
172
172
 
173
173
  useEffect(() => {
174
174
  // Call API only if searchTerm and fetchOptions are defined
175
- if (searchTerm && fetchOptions) {
175
+ if (searchTerm.length >= 3 && fetchOptions) {
176
176
  fetchOptions(searchTerm);
177
177
  }
178
178
  }, [searchTerm]);