Skip to content

Commit 0b3b8a6

Browse files
committed
Downgrading to 54 to fix deeply nested data test.
1 parent f70f285 commit 0b3b8a6

File tree

4 files changed

+47
-50
lines changed

4 files changed

+47
-50
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"prettier-plugin-svelte": "^3.2.1",
171171
"publint": "^0.2.7",
172172
"sass": "^1.71.0",
173-
"svelte": "5.0.0-next.60",
173+
"svelte": "5.0.0-next.54",
174174
"svelte-check": "^3.6.4",
175175
"sveltekit-flash-message": "^2.4.2",
176176
"sveltekit-rate-limiter": "^0.4.3",

pnpm-lock.yaml

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

src/routes/(v1)/record/+page.server.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import type { Actions, PageServerLoad } from './$types.js';
22
import { superValidate } from '$lib/server/index.js';
33
import { zod } from '$lib/adapters/zod.js';
4-
5-
import type { z } from 'zod';
64
import { schema } from './schemas.js';
75

86
export const load = (async () => {

src/routes/(v1)/record/+page.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
import { superForm } from '$lib/client/index.js';
33
import type { PageData } from './$types.js';
44
import SuperDebug from '$lib/client/SuperDebug.svelte';
5-
import { schema } from './schemas.js';
65
76
export let data: PageData;
87
98
let postedData: Record<string, number>;
109
11-
const { form, errors, enhance, options } = superForm(data.form, {
10+
const { form, enhance, options } = superForm(data.form, {
1211
dataType: 'json',
1312
onUpdated({ form }) {
1413
postedData = form.data.data;

0 commit comments

Comments
 (0)