fix: remove noop arrow functions in player

This commit is contained in:
2026-05-24 22:45:04 +02:00
parent aa650068b1
commit 36f1961c9e
6 changed files with 31 additions and 12 deletions

View File

@@ -89,7 +89,7 @@ export const markEpisodeTransition = (episodeNumber: number): void => {
headers: { 'Content-Type': 'application/json' },
keepalive: true,
body: payload,
}).catch(() => {});
}).catch(() => undefined);
}
};