catch request

This commit is contained in:
alex-arc
2026-08-05 14:18:06 +02:00
parent 6dbe504b23
commit 80f15b6842
@@ -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],
);