This commit is contained in:
lingdocs 2022-07-20 14:55:04 -05:00
parent 47cfead1bc
commit 69b732ed37
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ function VideoPlayer(props: { url: string }) {
const [errored, setErrored] = useState(false);
if (errored) {
return <div className="my-4 text-center">
<div>Offline - Video Not Available</div>
<div>Offline / Video Not Available</div>
<button className="btn btn-light mt-4 mb-4" onClick={() => setErrored(false)}>RETRY</button>
</div>;
}