From f05e2d6dc0687580ede7f8a16726e778d84f0954 Mon Sep 17 00:00:00 2001 From: Felix Boehme Date: Sat, 2 Sep 2023 16:35:50 +0200 Subject: [PATCH] resolve build issue --- src/_oldvideo/components/actions/CaptionRendererAction.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_oldvideo/components/actions/CaptionRendererAction.tsx b/src/_oldvideo/components/actions/CaptionRendererAction.tsx index 7a631a8f..fd3cc4e9 100644 --- a/src/_oldvideo/components/actions/CaptionRendererAction.tsx +++ b/src/_oldvideo/components/actions/CaptionRendererAction.tsx @@ -2,10 +2,10 @@ import { useCallback, useEffect, useRef } from "react"; import { useAsync } from "react-use"; import { ContentCaption } from "subsrt-ts/dist/types/handler"; +import { getPlayerState } from "@/_oldvideo/state/cache"; import { parseSubtitles, sanitize } from "@/backend/helpers/captions"; import { Transition } from "@/components/Transition"; import { useSettings } from "@/state/settings"; -import { getPlayerState } from "@/_oldvideo/state/cache"; import { useVideoPlayerDescriptor } from "../../state/hooks"; import { useProgress } from "../../state/logic/progress";