From e75947a5f4671168a2f55f1d7d79712d27bc9781 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Fri, 26 Apr 2024 18:32:20 +0530 Subject: [PATCH] fix: double slashes in the global issues layout routes (#4298) --- web/components/headers/global-issues.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/headers/global-issues.tsx b/web/components/headers/global-issues.tsx index 2d58d9b16..caa98e71c 100644 --- a/web/components/headers/global-issues.tsx +++ b/web/components/headers/global-issues.tsx @@ -20,8 +20,8 @@ import { useLabel, useMember, useUser, useIssues } from "@/hooks/store"; import { usePlatformOS } from "@/hooks/use-platform-os"; const GLOBAL_VIEW_LAYOUTS = [ - { key: "list", title: "List", link: "/workspace-views", icon: List }, - { key: "spreadsheet", title: "Spreadsheet", link: "/workspace-views/all-issues", icon: Sheet }, + { key: "list", title: "List", link: "workspace-views", icon: List }, + { key: "spreadsheet", title: "Spreadsheet", link: "workspace-views/all-issues", icon: Sheet }, ]; type Props = {