Skip to content

Commit

Permalink
fix: 올바르지 않은 endpoint 수정 (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 authored Dec 5, 2024
1 parent f50f4d5 commit af56cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/apis/request/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const requestPostGuestEvent = async (postEventArgs: EventCreationData) =>

export const requestPostMemberEvent = async (eventName: EventName) => {
return await requestPostWithResponse<EventId>({
endpoint: `${USER_API_PREFIX}/events`,
endpoint: USER_API_PREFIX,
body: {
eventName,
},
Expand Down

0 comments on commit af56cb7

Please sign in to comment.