Skip to content

Commit ba9228b

Browse files
authored
Merge pull request #44 from Nexters/fix/api-bug
fix: API 호출 버그 수정
2 parents 7692827 + 206e8df commit ba9228b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/tuk-web/src/app/gathering/[gatheringId]/invites/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client';
2+
13
import GatheringInviteList from '@/app/gathering/[gatheringId]/invites/src/components/GatheringInviteList';
24

35
export default function GatheringInviteListPage() {

apps/tuk-web/src/shared/components/provider/ReactQueryProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const queryClient = new QueryClient({
99
staleTime: 1000 * 60,
1010
refetchOnWindowFocus: false,
1111
refetchOnMount: false,
12-
retry: 1,
12+
retry: false,
1313
},
1414
},
1515
});

0 commit comments

Comments
 (0)