diff --git a/src/components/VideoElement.js b/src/components/VideoElement.js
index 9d26ff50..2f3863fc 100644
--- a/src/components/VideoElement.js
+++ b/src/components/VideoElement.js
@@ -1,8 +1,9 @@
import React from 'react'
import Hls from 'hls.js'
-import './VideoElement.css'
import { VideoPlaceholder } from './VideoPlaceholder'
+import './VideoElement.css'
+
// streamUrl: string
// loading: boolean
export function VideoElement({ streamUrl, loading, setProgress }) {
@@ -44,7 +45,9 @@ export function VideoElement({ streamUrl, loading, setProgress }) {
)
} else {
return (
-
+
)
}
}