diff --git a/bun.lockb b/bun.lockb index 57a9f2a..e4abb27 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 5d9d264..b963613 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,6 @@ }, "trustedDependencies": [ "@sveltejs/kit", - "deasync", "esbuild", "svelte-preprocess" ] diff --git a/src/routes/guestbook/+page.server.ts b/src/routes/guestbook/+page.server.ts index 95f6b1f..b5d3b7a 100644 --- a/src/routes/guestbook/+page.server.ts +++ b/src/routes/guestbook/+page.server.ts @@ -50,7 +50,7 @@ export const actions = { post_github: postAction(auth.github, []), } -export async function load({ url, fetch, cookies, setHeaders }) { +export async function load({ url, fetch, cookies }) { const scopedCookies = scopeCookies(cookies) var data = { entries: [] as [number, Entry][],