Browse Source

Fix for form issue #5669 - when in an empty state didn't correctly handle null stores.

pull/5690/head
mike12345567 4 years ago
parent
commit
8b76693480
  1. 2
      packages/client/src/components/app/forms/FormStep.svelte

2
packages/client/src/components/app/forms/FormStep.svelte

@ -22,7 +22,7 @@
if (
formContext &&
$builderStore.inBuilder &&
$componentStore.selectedComponentPath?.includes($component.id)
$componentStore?.selectedComponentPath?.includes($component.id)
) {
formContext.formApi.setStep(step)
}

Loading…
Cancel
Save