Skip to content

Commit 188d9e1

Browse files
author
imjwoo
committed
✨ feat(user): 유저 등록 API 경로 수정
1 parent aaef91c commit 188d9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/userApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { api } from './axiosInstance';
22
import type { User } from '../types';
33

44
export async function postUserMe(): Promise<void> {
5-
await api.post('users/me', null);
5+
await api.post('users/signin-up', null);
66
}
77

88
export async function getMyProfile(): Promise<User> {

0 commit comments

Comments
 (0)