Skip to content

Commit

Permalink
fix: all events endpoint 변경 (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
colorkite10 authored Dec 1, 2023
1 parent 729850b commit eb9e357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const END_POINTS = {
GET_EVENT_FORM: (eventId: string) => `/events/${eventId}/forms`,
GET_BANNER_EVENTS: '/events/banner',
ALL_EVENTS: ({ category, pageNumber }: { category: string; pageNumber: number }) =>
`events?category=${category}&page=${pageNumber}&size=12,asc`,
`events?category=${category}&page=${pageNumber}&size=12`,
EVENT_APPLY: '/events/participate',
CANCEL_EVENT: ({ eventId }: { eventId: string }) => `/events/${eventId}/participate`,
GET_SUBMITTED_FORMS: ({ eventId, pageNumber }: { eventId: string; pageNumber: number }) =>
Expand Down

0 comments on commit eb9e357

Please sign in to comment.