diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/FormPage.tsx | 2 |
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>(); |