Skip to content

Commit 1558b48

Browse files
authored
relayer prod (#8535)
1 parent 3fba7e4 commit 1558b48

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export function ProjectSidebarLayout(props: {
2222
children: React.ReactNode;
2323
hasEngines: boolean;
2424
showContracts: boolean;
25-
teamId: string;
2625
}) {
2726
const contentSidebarLinks = [
2827
{
@@ -52,14 +51,14 @@ export function ProjectSidebarLayout(props: {
5251
href: `${props.layoutPath}/wallets/sponsored-gas`,
5352
label: "Gas Sponsorship",
5453
},
55-
...(props.teamId === "team_clmb33q9w00gn1x0u2ri8z0k0"
56-
? [
57-
{
58-
href: `${props.layoutPath}/wallets/dedicated-relayer`,
59-
label: "Dedicated Relayer",
60-
},
61-
]
62-
: []),
54+
{
55+
href: `${props.layoutPath}/wallets/dedicated-relayer`,
56+
label: (
57+
<span className="flex items-center gap-2">
58+
Dedicated Relayer <Badge>New</Badge>
59+
</span>
60+
),
61+
},
6362
],
6463
},
6564
...(props.showContracts

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export default async function ProjectLayout(props: {
107107
layoutPath={layoutPath}
108108
hasEngines={hasLegacyDedicatedEngines}
109109
showContracts={showContracts}
110-
teamId={team.id}
111110
>
112111
{props.children}
113112
</ProjectSidebarLayout>

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/active-state.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export function DedicatedRelayerActiveState(
154154
{/* Transactions Table */}
155155
<div className="overflow-hidden rounded-lg border bg-card">
156156
<div className="flex flex-col justify-between gap-3 border-b px-4 py-4 lg:flex-row lg:items-center lg:px-6">
157-
<h2 className="font-semibold text-xl">Fleet Transactions</h2>
157+
<h2 className="font-semibold text-xl">Transaction History</h2>
158158
<div className="flex gap-2">
159159
<ChainFilter
160160
chainId={chainIdFilter}

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/tier-selection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function PlanCard(props: {
171171
className="w-full rounded-full py-3 h-auto text-base bg-background gap-2"
172172
>
173173
<Link
174-
href="https://thirdweb.com/contact-us"
174+
href="https://ea58c.share.hsforms.com/2o8qbJVozSX2Q4oukYfYGuA"
175175
target="_blank"
176176
rel="noopener noreferrer"
177177
>

0 commit comments

Comments
 (0)