From a101597d7633c37f29724b87c01cff0b432d3d40 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 20 May 2024 06:51:01 -0600 Subject: [PATCH] Cleanup --- web/src/components/player/dynamic/DynamicVideoPlayer.tsx | 2 +- web/src/utils/timelineUtil.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/player/dynamic/DynamicVideoPlayer.tsx b/web/src/components/player/dynamic/DynamicVideoPlayer.tsx index e292cb6179..6089208b2f 100644 --- a/web/src/components/player/dynamic/DynamicVideoPlayer.tsx +++ b/web/src/components/player/dynamic/DynamicVideoPlayer.tsx @@ -12,7 +12,7 @@ import ActivityIndicator from "@/components/indicators/activity-indicator"; import { VideoResolutionType } from "@/types/live"; import axios from "axios"; import { cn } from "@/lib/utils"; -import { getTimestampOffset, getUTCOffset } from "@/utils/dateUtil"; +import { getTimestampOffset } from "@/utils/dateUtil"; /** * Dynamically switches between video playback and scrubbing preview player. diff --git a/web/src/utils/timelineUtil.tsx b/web/src/utils/timelineUtil.tsx index c47c0a41d7..2f898a7813 100644 --- a/web/src/utils/timelineUtil.tsx +++ b/web/src/utils/timelineUtil.tsx @@ -20,7 +20,7 @@ import { MdOutlinePictureInPictureAlt, } from "react-icons/md"; import { FaBicycle } from "react-icons/fa"; -import { endOfHourOrCurrentTime, getUTCOffset } from "./dateUtil"; +import { endOfHourOrCurrentTime } from "./dateUtil"; import { TimeRange, Timeline } from "@/types/timeline"; export function getTimelineIcon(timelineItem: Timeline) {