Skip to content

Commit

Permalink
[fix] 가입 안되는 이슈 수정 누가 바꿨니
Browse files Browse the repository at this point in the history
  • Loading branch information
zestlee1106 committed Dec 20, 2023
1 parent 105f56f commit 31c2c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/signup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const postPassword = async (payload: ProfilePayload) => {
export const postProfile = async (payload: ProfilePayload) => {
const { firstName, lastName, genderCode, birthDate, description, email } = payload;

return fetchData(`/api/v1/auth/reset-password=${email ? encodeURIComponent(email) : ''}`, {
return fetchData(`/api/v1/auth/profile?email=${email ? encodeURIComponent(email) : ''}`, {
method: 'POST',
body: JSON.stringify({
firstName,
Expand Down

0 comments on commit 31c2c6f

Please sign in to comment.