simpleloan_api 1.1.8 → 1.1.9

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/dist/index.js CHANGED
@@ -158,6 +158,7 @@ function useFetch(url, clearResponse) {
158
158
  } catch (error) {
159
159
  response.value = null;
160
160
  }
161
+ pending.value = false;
161
162
  return response.value;
162
163
  });
163
164
  }
package/dist/index.mjs CHANGED
@@ -84,6 +84,7 @@ function useFetch(url, clearResponse) {
84
84
  } catch (error) {
85
85
  response.value = null;
86
86
  }
87
+ pending.value = false;
87
88
  return response.value;
88
89
  });
89
90
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",