Skip to content

Commit

Permalink
fix: 최대 대기 시간 증가
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeseungyun committed Sep 11, 2024
1 parent b11a86d commit 0606484
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 @@ -8,17 +8,17 @@ import { CustomAxiosError, KoinError } from 'model/error';

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

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

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

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

0 comments on commit 0606484

Please sign in to comment.