From c7711d4d14cfb8bd99ab066bf53ed5ef6efe6a9c Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Mon, 8 Feb 2021 16:47:58 +0200 Subject: Add nullability check for ref --- src/pages/FormPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx index 0023db4..e8d1a4b 100644 --- a/src/pages/FormPage.tsx +++ b/src/pages/FormPage.tsx @@ -221,7 +221,7 @@ function FormPage(): JSX.Element { if (invalidFieldIds.length) { const firstErrored = questions[invalidFieldIds[0]]; - if (firstErrored) { + if (firstErrored && firstErrored.props.scroll_ref) { firstErrored.props.scroll_ref.current.scrollIntoView({ behavior: "smooth", block: "center" }); } return; -- cgit v1.2.3