From bf81deeb3523d8e6b8df89ba5a9dd536651f6412 Mon Sep 17 00:00:00 2001 From: MananTank Date: Fri, 18 Apr 2025 23:14:25 +0000 Subject: [PATCH] Dashboard: Fix Nebula card link in project FTUX (#6776) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR updates the `href` property in the `ProjectFTUX` component to include the `projectSlug`, enhancing the link structure for better navigation within the application. ### Detailed summary - Updated the `href` in the `ProjectFTUX` component from `/team/${props.teamSlug}/~/nebula` to `/team/${props.teamSlug}/${props.projectSlug}/nebula`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .../[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx index dae245ed81a..c09dc7062ac 100644 --- a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx @@ -258,7 +258,7 @@ function ProductsSection(props: { title: "Nebula", description: "Integrate a blockchain AI model to improve your users insight into your application and the blockchain", - href: `/team/${props.teamSlug}/~/nebula`, + href: `/team/${props.teamSlug}/${props.projectSlug}/nebula`, icon: NebulaIcon, trackingLabel: "nebula", }, @@ -308,7 +308,6 @@ function ProductCard(props: {