Skip to content

Commit 90e03ed

Browse files
authored
Merge pull request #28 from next-engineer/feature/update-user-api-paths
유저 등록 경로 수정
2 parents aaef91c + 188d9e1 commit 90e03ed

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)