Skip to content

Commit 0e406ad

Browse files
committed
remove looking for engine on project view page
1 parent f47eda6 commit 0e406ad

File tree

1 file changed

+1
-9
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/(team)

1 file changed

+1
-9
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/(team)/page.tsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { getInAppWalletUsage } from "@/api/analytics";
44
import { getAuthToken } from "@/api/auth-token";
55
import { getProjects, type Project } from "@/api/project/projects";
66
import { getTeamBySlug } from "@/api/team/get-team";
7-
import { DismissibleAlert } from "@/components/blocks/dismissible-alert";
87
import { getClientThirdwebClient } from "@/constants/thirdweb-client.client";
98
import { loginRedirect } from "@/utils/redirects";
109
import { Changelog } from "./_components/Changelog";
@@ -63,15 +62,8 @@ export default async function Page(props: {
6362
team={team}
6463
/>
6564

66-
{team.billingPlan === "free" ? (
65+
{team.billingPlan === "free" && (
6766
<FreePlanUpsellBannerUI highlightPlan="growth" teamSlug={team.slug} />
68-
) : (
69-
<DismissibleAlert
70-
preserveState={true}
71-
description="Engines, contracts, project settings, and more are now managed within projects. Open or create a project to access them."
72-
localStorageId={`${team.id}-engines-alert`}
73-
title="Looking for Engines?"
74-
/>
7567
)}
7668

7769
<Changelog />

0 commit comments

Comments
 (0)