Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function ProjectSidebarLayout(props: {
children: React.ReactNode;
hasEngines: boolean;
showContracts: boolean;
teamId: string;
}) {
const contentSidebarLinks = [
{
Expand Down Expand Up @@ -52,14 +51,14 @@ export function ProjectSidebarLayout(props: {
href: `${props.layoutPath}/wallets/sponsored-gas`,
label: "Gas Sponsorship",
},
...(props.teamId === "team_clmb33q9w00gn1x0u2ri8z0k0"
? [
{
href: `${props.layoutPath}/wallets/dedicated-relayer`,
label: "Dedicated Relayer",
},
]
: []),
{
href: `${props.layoutPath}/wallets/dedicated-relayer`,
label: (
<span className="flex items-center gap-2">
Dedicated Relayer <Badge>New</Badge>
</span>
),
},
],
},
...(props.showContracts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ export default async function ProjectLayout(props: {
layoutPath={layoutPath}
hasEngines={hasLegacyDedicatedEngines}
showContracts={showContracts}
teamId={team.id}
>
{props.children}
</ProjectSidebarLayout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export function DedicatedRelayerActiveState(
{/* Transactions Table */}
<div className="overflow-hidden rounded-lg border bg-card">
<div className="flex flex-col justify-between gap-3 border-b px-4 py-4 lg:flex-row lg:items-center lg:px-6">
<h2 className="font-semibold text-xl">Fleet Transactions</h2>
<h2 className="font-semibold text-xl">Transaction History</h2>
<div className="flex gap-2">
<ChainFilter
chainId={chainIdFilter}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function PlanCard(props: {
className="w-full rounded-full py-3 h-auto text-base bg-background gap-2"
>
<Link
href="https://thirdweb.com/contact-us"
href="https://ea58c.share.hsforms.com/2o8qbJVozSX2Q4oukYfYGuA"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Loading