aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-02-08 19:50:25 +0200
committerGravatar ks129 <[email protected]>2021-02-08 19:50:25 +0200
commit20a1d2dfb810cdbed70514d3917e95ef620cfc78 (patch)
treed5d773fac184b3be76957d5c5f04728c1de1eb16 /src/pages
parentCreate refMap to avoid errors on direct ref access (diff)
Remove trailing whitespaces
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/FormPage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx
index 7798be6..f0fb548 100644
--- a/src/pages/FormPage.tsx
+++ b/src/pages/FormPage.tsx
@@ -197,7 +197,7 @@ function FormPage(): JSX.Element {
if (!form) {
return <Loading/>;
}
-
+
const refMap: Map<string, React.RefObject<RenderedQuestion>> = new Map();
const questions = form.questions.map((question, index) => {
const questionRef = createRef<RenderedQuestion>();