From 593af5a6e1b06a8517614133ff98f6f250bcac33 Mon Sep 17 00:00:00 2001 From: Christian Beutel <> Date: Thu, 26 Jun 2025 11:52:33 +0200 Subject: [PATCH] fixes missing add to list button in trail create --- web/src/routes/trail/edit/[id]/+page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/trail/edit/[id]/+page.ts b/web/src/routes/trail/edit/[id]/+page.ts index beecec01..6f493962 100644 --- a/web/src/routes/trail/edit/[id]/+page.ts +++ b/web/src/routes/trail/edit/[id]/+page.ts @@ -13,7 +13,7 @@ export const load: Load = async ({ params, fetch }) => { return error(400, "Bad Request") } const categories = await categories_index(fetch) - const lists = await lists_index({ q: "", author: user?.id ?? "" }, 1, -1, fetch) + const lists = await lists_index({ q: "", author: user?.actor ?? "" }, 1, -1, fetch) let trail: Trail; if (params.id === "new") {