From 4c8aef58aedae3fb88120d3acadd7b07a632f7b9 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 11 Oct 2024 08:09:31 +0200 Subject: [PATCH] fix: revert link changes (#8425) Making them absolute appears to break them. Reverting to relative links. --- frontend/src/component/personalDashboard/ConnectSDK.tsx | 4 ++-- .../src/component/personalDashboard/PersonalDashboard.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/component/personalDashboard/ConnectSDK.tsx b/frontend/src/component/personalDashboard/ConnectSDK.tsx index 4860dfd63b..99e0149e9e 100644 --- a/frontend/src/component/personalDashboard/ConnectSDK.tsx +++ b/frontend/src/component/personalDashboard/ConnectSDK.tsx @@ -59,7 +59,7 @@ export const CreateFlag: FC<{ project: string }> = ({ project }) => {
-
diff --git a/frontend/src/component/personalDashboard/PersonalDashboard.tsx b/frontend/src/component/personalDashboard/PersonalDashboard.tsx index 76c89c7260..148bbb506e 100644 --- a/frontend/src/component/personalDashboard/PersonalDashboard.tsx +++ b/frontend/src/component/personalDashboard/PersonalDashboard.tsx @@ -70,7 +70,7 @@ const FlagListItem: FC<{ } }, []); const IconComponent = getFeatureTypeIcons(flag.type); - const flagLink = `/projects/${flag.project}/features/${flag.name}`; + const flagLink = `projects/${flag.project}/features/${flag.name}`; return (