From a84fe7f8c3b5d1f48b35d110150f78155309efb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Poul=20Kjeldager=20S=C3=B8rensen?= Date: Sun, 10 Mar 2024 21:06:58 +0100 Subject: [PATCH] fix: dummy data was missing props --- packages/core/src/state/QuickformState.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/src/state/QuickformState.ts b/packages/core/src/state/QuickformState.ts index ed5f717..de77a25 100644 --- a/packages/core/src/state/QuickformState.ts +++ b/packages/core/src/state/QuickformState.ts @@ -57,6 +57,8 @@ export const defaultData: QuickFormModel = { buttonText: "Submit", submitFields: [ { + intermediate: false, + visited:false, questionKey: "question1", logicalName: "question1", inputType: "text", @@ -68,6 +70,8 @@ export const defaultData: QuickFormModel = { output: {} }, { + intermediate: false, + visited:false, questionKey: "question1", logicalName: "question2", inputType: "email",