We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d532a commit f1bd303Copy full SHA for f1bd303
src/api/auth.ts
@@ -29,10 +29,6 @@ export const sendVerificationCode = async (data: SendVerificationRequest): Promi
29
// 비밀번호 찾기 - 인증번호 발송
30
export const sendPasswordResetCode = async (data: SendPasswordResetCodeRequest): Promise<SendPasswordResetCodeResponse> => {
31
try {
32
-<<<<<<< Updated upstream
33
- // 💡 다른 경로들과 일관성을 위해 'api/v1'이 생략된 base URL을 사용한다면 경로를 확인해 보세요.
34
-=======
35
->>>>>>> Stashed changes
36
const response = await apiClient.post<SendPasswordResetCodeResponse>('/auth/password/send-code', data);
37
return response.data;
38
} catch (error: any) {
0 commit comments