Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 58cc238

Browse files
committed
✏️ Fix
1 parent 22d33a4 commit 58cc238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apis/v2/reservation/[id].ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { deleteRequest, getRequest } from '@/apis';
22
import { Reservation } from '@/apis/types/reservation';
33

44
export const getReservation = async (id: number) => {
5-
return await getRequest<Reservation>(`/v2/reservation/${id}`, { jsessionID: true });
5+
return await getRequest<Reservation>(`/v2/reservation/${id}`, {}, { jsessionID: true });
66
};
77

88
export const deleteSingleReservation = async (id: number) => {

0 commit comments

Comments
 (0)