diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx index f92b3b78fe7..009229c4ac2 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx @@ -14,6 +14,7 @@ import { type ShadcnSidebarLink, } from "@/components/blocks/full-width-sidebar-layout"; import { BridgeIcon } from "@/icons/BridgeIcon"; +import { ContractIcon } from "@/icons/ContractIcon"; import { NebulaIcon } from "@/icons/NebulaIcon"; import { PayIcon } from "@/icons/PayIcon"; import { TokenIcon } from "@/icons/TokenIcon"; @@ -54,6 +55,11 @@ export function ProjectSidebarLayout(props: { }, ], }, + { + href: `${props.layoutPath}/contracts`, + icon: ContractIcon, + label: "Contracts", + }, { href: `${props.layoutPath}/x402`, icon: PayIcon, @@ -92,10 +98,6 @@ export function ProjectSidebarLayout(props: { href: `${props.layoutPath}/gateway/indexer`, label: "Indexer", }, - { - href: `${props.layoutPath}/contracts`, - label: "Contracts", - }, ], }, // only show engine link if there the user already has an engine instance