diff --git a/frontend/app/components/Spots/SpotPlayer/components/SpotVideoContainer.tsx b/frontend/app/components/Spots/SpotPlayer/components/SpotVideoContainer.tsx index 0dc8282d7..0fe7a81ea 100644 --- a/frontend/app/components/Spots/SpotPlayer/components/SpotVideoContainer.tsx +++ b/frontend/app/components/Spots/SpotPlayer/components/SpotVideoContainer.tsx @@ -34,7 +34,9 @@ function SpotVideoContainer({ checkReady: () => Promise; }) { const [prevIsProcessing, setPrevIsProcessing] = React.useState(false); - const [processingState, setProcessingState] = React.useState(ProcessingState.Unchecked); + const [processingState, setProcessingState] = React.useState( + ProcessingState.Unchecked + ); const [isLoaded, setLoaded] = React.useState(false); const videoRef = React.useRef(null); const playbackTime = React.useRef(0);