Skip to content

Commit bf81dee

Browse files
committed
Dashboard: Fix Nebula card link in project FTUX (#6776)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex -->
1 parent 25a7ad7 commit bf81dee

File tree

1 file changed

+1
-2
lines changed
  • apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX

1 file changed

+1
-2
lines changed

apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/ProjectFTUX/ProjectFTUX.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function ProductsSection(props: {
258258
title: "Nebula",
259259
description:
260260
"Integrate a blockchain AI model to improve your users insight into your application and the blockchain",
261-
href: `/team/${props.teamSlug}/~/nebula`,
261+
href: `/team/${props.teamSlug}/${props.projectSlug}/nebula`,
262262
icon: NebulaIcon,
263263
trackingLabel: "nebula",
264264
},
@@ -308,7 +308,6 @@ function ProductCard(props: {
308308
<h3 className="mb-0.5 font-semibold text-lg tracking-tight">
309309
<TrackedLinkTW
310310
href={props.href}
311-
target="_blank"
312311
className="before:absolute before:inset-0"
313312
category="project-ftux"
314313
label={props.trackingLabel}

0 commit comments

Comments
 (0)