Skip to content

Commit ee6d293

Browse files
committed
refac: 잘못 표기한 non-null assertion 삭제
1 parent e5afb6d commit ee6d293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/entities/host/hook/hostDashboardHook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const useHostDashboard = () => {
99

1010
const { data, refetch } = useQuery({
1111
queryKey: ['hostDashboard', eventId],
12-
queryFn: () => hostDashboard(eventId!),
12+
queryFn: () => hostDashboard(eventId),
1313
enabled: !!eventId,
1414
});
1515

0 commit comments

Comments
 (0)