From 065c36a0a6d0c9cf1012b71ce549822530b22c59 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 4 Sep 2022 22:52:32 -0700 Subject: [PATCH] Fix invalid linter error about onLoad on an iframe --- web/components/ui/Modal/Modal.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/components/ui/Modal/Modal.tsx b/web/components/ui/Modal/Modal.tsx index 9557fe586..9010433fd 100644 --- a/web/components/ui/Modal/Modal.tsx +++ b/web/components/ui/Modal/Modal.tsx @@ -33,6 +33,7 @@ export default function Modal(props: Props) { sandbox="allow-same-origin allow-scripts allow-popups allow-forms" frameBorder="0" allowFullScreen + // eslint-disable-next-line react/no-unknown-property onLoad={() => setLoading(false)} /> );