Skip to content

Commit

Permalink
Merge pull request #167 from BCSDLab/feature/#166
Browse files Browse the repository at this point in the history
타임 오류 해결
  • Loading branch information
hanagertrudeKim authored Mar 4, 2024
2 parents fdafaad + 8fccab4 commit 1f76739
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ import { RefreshParams, RefreshResponse } from 'model/auth';

const client = axios.create({
baseURL: `${API_PATH}`,
timeout: 2000,
timeout: 20000,
});

const accessClient = axios.create({
baseURL: `${API_PATH}`,
timeout: 2000,
timeout: 20000,
});

const multipartClient = axios.create({
baseURL: `${API_PATH}`,
timeout: 2000,
timeout: 20000,
});

const refresh = async (config: InternalAxiosRequestConfig) => {
Expand Down

0 comments on commit 1f76739

Please sign in to comment.