From 76b7fd052cd48c7fbf21f3fedc77d8acce2173c7 Mon Sep 17 00:00:00 2001 From: Che Cameron Date: Sun, 3 Aug 2025 18:03:53 +0100 Subject: [PATCH] Lint with `prettier` --- frontend/src/components/VideoPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/VideoPlayer.tsx b/frontend/src/components/VideoPlayer.tsx index 594b6370..f0ef79d6 100644 --- a/frontend/src/components/VideoPlayer.tsx +++ b/frontend/src/components/VideoPlayer.tsx @@ -71,7 +71,7 @@ const handleTimeUpdate = if (sponsorBlock && sponsorBlock.segments) { sponsorBlock.segments.forEach((segment: SponsorBlockSegmentType) => { const actionType = segment.actionType; - const doSkip = (actionType == 'skip'); + const doSkip = actionType == 'skip'; const [from, to] = segment.segment; if (doSkip && currentTime >= from && currentTime <= from + 0.3) {