From e88197c4b157c1ddfb4dc4ff0121775bb4beaa28 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Fri, 13 Jan 2023 11:58:40 -0700 Subject: [PATCH] ui: fix DashboardRouter trailing slashes --- resources/scripts/routers/DashboardRouter.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/scripts/routers/DashboardRouter.tsx b/resources/scripts/routers/DashboardRouter.tsx index f874b20e3..127019f7a 100644 --- a/resources/scripts/routers/DashboardRouter.tsx +++ b/resources/scripts/routers/DashboardRouter.tsx @@ -21,7 +21,7 @@ function DashboardRouter() { {routes.account .filter(route => route.path !== undefined) .map(({ path, name, end = false }) => ( - + {name} ))} @@ -34,7 +34,7 @@ function DashboardRouter() { } /> {routes.account.map(({ route, component: Component }) => ( - } /> + } /> ))} } />