We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbbf01f commit 1fbc120Copy full SHA for 1fbc120
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "0.1.88",
+ "version": "0.1.89",
3
"license": "MIT",
4
"main": "dist/index.js",
5
"typings": "dist/index.d.ts",
src/index.tsx
@@ -13,7 +13,8 @@ import axios from 'axios';
13
import localForage from 'localforage';
14
import { omit } from 'underscore';
15
16
-const api = axios.create();
+//@ts-ignore
17
+const api = axios?.create();
18
const RETRY_LIMIT = 0;
19
const RETRY_DELAY_MS = 1000;
20
const API_REQUESTS_STORAGE_KEY = 'apiRequests';
0 commit comments