We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b160687 commit 727bb33Copy full SHA for 727bb33
1 file changed
apps/ticket-admin/src/data/admin/postGuestTickets/mutation.ts
@@ -30,6 +30,9 @@ export const usePostGuestTicketsMutation = (
30
const { data } = await instance.post<PostGuestTicketsResponse>(
31
API_URL.ADMIN.GUEST_TICKETS,
32
params,
33
+ // MEMO: guest 티켓 생성 API는 처리 시간이 길어질 수 있어 타임아웃을 60초로 설정
34
+ // 추후 성준이가 비동기로 메일 보내도록 변경하면 제거할 것
35
+ { timeout: 60_000 },
36
);
37
38
return data;
0 commit comments