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], );