We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190a635 commit 5162b85Copy full SHA for 5162b85
src/lib/axios.ts
@@ -1,5 +1,4 @@
1
import Axios from 'axios'
2
-import { getAppVersion } from 'src/utils/Os'
3
import { ResponseInterceptor } from './interceptors/ResponseInterceptor'
4
const packageFile = require('../../package.json')
5
@@ -9,8 +8,8 @@ const getBaseApi = (fallback: string | null = null) => {
9
8
10
export const axios = Axios.create({
11
baseURL: getBaseApi(),
12
- headers: {
+ /*headers: {
13
'App-Version': getAppVersion() || '0.0.0',
14
- },
+ },*/
15
})
16
axios.interceptors.response.use(ResponseInterceptor)
0 commit comments