format & lint

This commit is contained in:
Snarling
2022-09-13 12:37:24 -04:00
parent c9ee938bc6
commit 91a69d7d8f
39 changed files with 59 additions and 154 deletions

View File

@@ -4,7 +4,6 @@ import { Exploit } from "./Exploit";
const getComputedStyle = window.getComputedStyle;
export function Unclickable(): React.ReactElement {
function unclickable(event: React.MouseEvent<HTMLDivElement>): void {
if (!event.target || !(event.target instanceof Element)) return;
const display = getComputedStyle(event.target).display;