Linting update

This commit is contained in:
Infinite
2020-01-20 21:25:47 +01:00
parent c83e0898f9
commit 9827647122
58 changed files with 789 additions and 737 deletions

View File

@@ -1,3 +1,5 @@
/* eslint-disable no-param-reassign, no-console */
import { useEffect, useRef } from "react";
import { StashService } from "../core/StashService";
@@ -31,7 +33,7 @@ export class VideoHoverHook {
videoTag.pause();
}
};
videoTag.onpause = () => isPlaying.current = false;
videoTag.onpause = () => { isPlaying.current = false };
}, [videoEl]);
useEffect(() => {