@codeleap/mobile 3.6.1 → 3.6.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/mobile",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "main": "src/index.ts",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -207,7 +207,7 @@ export const Autocomplete = <T extends string | number = string, Multi extends b
207
207
  placeholder={placeholder}
208
208
  debugName={debugName}
209
209
  onTypingChange={(isTyping) => {
210
- if (searchable && !!loadOptions) {
210
+ if (searchable && !!loadOptions && isTyping) {
211
211
  setLoading(isTyping)
212
212
  }
213
213
  }}