diff --git a/packages/site/src/markdown/docs/latest/svelte/en/multi-page-forms.md b/packages/site/src/markdown/docs/latest/svelte/en/multi-page-forms.md index 1e5ea3d0..aa14333b 100644 --- a/packages/site/src/markdown/docs/latest/svelte/en/multi-page-forms.md +++ b/packages/site/src/markdown/docs/latest/svelte/en/multi-page-forms.md @@ -24,7 +24,7 @@ The easiest way to do this would be to pass our initial values and handlers as p export let onSubmit; export let onBack; - const { form, data } = createForm({ onSubmit }); + const { form, data } = createForm({ onSubmit, initialValues });