From 80f15b6842aa9ae9c03b0dfa2aaf96cdb87faf4e Mon Sep 17 00:00:00 2001 From: alex-arc Date: Wed, 5 Aug 2026 14:18:06 +0200 Subject: [PATCH] catch request --- apps/client/src/common/hooks/useEntryAction.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/client/src/common/hooks/useEntryAction.ts b/apps/client/src/common/hooks/useEntryAction.ts index 07ff4fe6f..a561e416e 100644 --- a/apps/client/src/common/hooks/useEntryAction.ts +++ b/apps/client/src/common/hooks/useEntryAction.ts @@ -480,7 +480,12 @@ function useEntryActionsForRundown(scopedRundownId: string | undefined) { if (!rundownId) { throw new Error('Rundown not initialised'); } - await requestFitGroupTarget(rundownId, eventId); + + try { + await requestFitGroupTarget(rundownId, eventId); + } catch (error) { + logAxiosError('Error updating event', error); + } }, [getCurrentRundownData], );