Skip to content

Commit 7e248ba

Browse files
committed
Using svelte5-212 until hydration problem is fixed.
1 parent 524fa61 commit 7e248ba

File tree

3 files changed

+57
-60
lines changed

3 files changed

+57
-60
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
"prettier-plugin-svelte": "^3.2.6",
187187
"publint": "^0.2.9",
188188
"sass": "^1.77.8",
189-
"svelte": "5.0.0-next.219",
189+
"svelte": "5.0.0-next.212",
190190
"svelte-check": "^3.8.5",
191191
"svelte-french-toast": "^1.2.0",
192192
"sveltekit-flash-message": "^2.4.4",

pnpm-lock.yaml

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/(v2)/v2/return-multiple-forms/+page.server.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ import { schema, other } from './schema.js';
77

88
export const load: PageServerLoad = async () => {
99
const form = await superValidate(zod(schema));
10-
11-
// this does work
12-
// const otherForm = await superValidate({provider: "some provider"}, zod(other));
1310
const otherForm = await superValidate(zod(other));
1411

1512
return { form, otherForm };

0 commit comments

Comments
 (0)