Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8e65394

Browse files
committedSep 6, 2022
[fix] pass form prop to pages
Fixes #6610 Was not passed to pages in all situations
1 parent 0b93b07 commit 8e65394

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎.changeset/nine-sheep-grab.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sveltejs/kit': patch
3+
---
4+
5+
[fix] pass `form` prop to pages

‎packages/kit/src/core/sync/write_root.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function write_root(manifest_data, output) {
2121

2222
let l = max_depth;
2323

24-
let pyramid = `<svelte:component this={components[${l}]} data={data_${l}} />`;
24+
let pyramid = `<svelte:component this={components[${l}]} data={data_${l}} {form} />`;
2525

2626
while (l--) {
2727
pyramid = `

0 commit comments

Comments
 (0)
Please sign in to comment.