Skip to content

Commit 3fbd69b

Browse files
committed
hotfix: 리팩토링 미반영으로 인한 오류 해결
1 parent 4334dbb commit 3fbd69b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__mock__/handlers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { http } from 'msw';
2-
import { env, PATHS } from '@/constants';
2+
import { ENVS, PATHS } from '@/constants';
33
import { LoginVo } from '@/types';
44
import { BaseError, BaseSuccess } from './responses';
55

6-
const BASE_URL = env.BASE_URL + '/api';
6+
const BASE_URL = ENVS.BASE_URL + '/api';
77

88
const login = http.post(`${BASE_URL}${PATHS.LOGIN}`, async ({ request }) => {
99
const { accessToken, refreshToken } = (await request.json()) as LoginVo;

0 commit comments

Comments
 (0)