From 54ee507209682ece87c29fb413c46078c1b123ff Mon Sep 17 00:00:00 2001 From: lance chant <13349722+lancechant@users.noreply.github.com> Date: Mon, 1 Jun 2026 15:22:39 +0200 Subject: [PATCH] fix: fixing the time variable (#1638) Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> --- components/video-player/controls/Controls.tv.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/video-player/controls/Controls.tv.tsx b/components/video-player/controls/Controls.tv.tsx index 5ddd4bc38..a85f62154 100644 --- a/components/video-player/controls/Controls.tv.tsx +++ b/components/video-player/controls/Controls.tv.tsx @@ -1254,7 +1254,7 @@ export const Controls: FC = ({ - {t("player.ends_at")} {getFinishTime()} + {t("player.ends_at", { time: getFinishTime() })} )} @@ -1448,7 +1448,7 @@ export const Controls: FC = ({ - {t("player.ends_at")} {getFinishTime()} + {t("player.ends_at", { time: getFinishTime() })} )}