From 76ea2aeb8b035ec5eec77774702bd6ac1be4feea Mon Sep 17 00:00:00 2001 From: TZGyn Date: Mon, 18 Nov 2024 04:07:04 +0800 Subject: [PATCH] fixed incorrect breadcrumb link in analytics page --- .../src/routes/(app)/dashboard/links/[id]/+page.server.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/routes/(app)/dashboard/links/[id]/+page.server.ts b/frontend/src/routes/(app)/dashboard/links/[id]/+page.server.ts index e584f3e..46a6a3d 100644 --- a/frontend/src/routes/(app)/dashboard/links/[id]/+page.server.ts +++ b/frontend/src/routes/(app)/dashboard/links/[id]/+page.server.ts @@ -187,7 +187,10 @@ export const load = (async (event) => { const breadcrumbs = [ ...parentBreadcrumbs, - { name: shortener.link, path: '/dashboard/' + shortener.id }, + { + name: shortener.link, + path: '/dashboard/links/' + shortener.id, + }, ] return {