Skip to content

Commit 1fbc120

Browse files
committed
some fixes
1 parent bbbf01f commit 1fbc120

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.88",
2+
"version": "0.1.89",
33
"license": "MIT",
44
"main": "dist/index.js",
55
"typings": "dist/index.d.ts",

src/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import axios from 'axios';
1313
import localForage from 'localforage';
1414
import { omit } from 'underscore';
1515

16-
const api = axios.create();
16+
//@ts-ignore
17+
const api = axios?.create();
1718
const RETRY_LIMIT = 0;
1819
const RETRY_DELAY_MS = 1000;
1920
const API_REQUESTS_STORAGE_KEY = 'apiRequests';

0 commit comments

Comments
 (0)