From 119b7ad937aed9ca760e1165801d6a74e0892b7e Mon Sep 17 00:00:00 2001 From: Uruk Date: Fri, 22 May 2026 02:43:52 +0200 Subject: [PATCH] refactor(casting): drop unused liveProgress export --- hooks/useCastPlayerProgress.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/hooks/useCastPlayerProgress.ts b/hooks/useCastPlayerProgress.ts index fa6d849ed..af1187657 100644 --- a/hooks/useCastPlayerProgress.ts +++ b/hooks/useCastPlayerProgress.ts @@ -40,8 +40,6 @@ interface UseCastPlayerProgressResult { setScrubPercentage: (value: number) => void; /** Current playback progress, in seconds (live-updating). */ progress: number; - /** Live-updating playback position, in seconds. */ - liveProgress: number; /** Last stable playback position (seconds), for resuming across reloads. */ resumePositionRef: RefObject; /** Current trickplay image URL/coordinates, or null. */ @@ -151,7 +149,6 @@ export function useCastPlayerProgress({ scrubPercentage, setScrubPercentage, progress, - liveProgress, resumePositionRef, trickPlayUrl, calculateTrickplayUrl,