From 03704d290c9661b4f39aede0ee9be8aec9a9557c Mon Sep 17 00:00:00 2001 From: dudina-ma Date: Tue, 28 Jul 2026 21:13:55 +0200 Subject: [PATCH] [frontend] fix "Invalid task ID" when creating a task --- frontend/src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index e5ba963..4cde73a 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -75,8 +75,8 @@ auth: true, }, { pattern: "/tasks/:slug/:number", component: TaskDetailPage, auth: true }, - { pattern: "/tasks/:id", component: TaskRedirectPage, auth: true }, { pattern: "/tasks/new", component: TaskNewPage, auth: true }, + { pattern: "/tasks/:id", component: TaskRedirectPage, auth: true }, { pattern: "/profile", component: ProfilePage, auth: true }, { pattern: "/settings/security", component: SecurityPage, auth: true }, {