Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Jan 26, 2023
1 parent 6d422bf commit f7945e9
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/Lib/HttpRequest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios, { AxiosRequestConfig } from 'axios';
import axios, { InternalAxiosRequestConfig } from 'axios';
import store from '../Store/Store'
import Router from './Router'

Expand All @@ -12,7 +12,7 @@ const HttpRequest = axios.create({
});

HttpRequest.interceptors.request.use(
(config: AxiosRequestConfig) => {
(config: InternalAxiosRequestConfig) => {
let token = store.getters['authStorage/getToken'];

if (token && config.headers) {
Expand Down

0 comments on commit f7945e9

Please sign in to comment.