Skip to content

Commit 1e924e0

Browse files
committed
updated alert description in team overview dashboard page (#6979)
<!-- ## 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 focuses on updating the content in the `page.tsx` file related to the `TeamProjectsPage` component and modifying the alert message to provide clearer information about managing engines within projects. ### Detailed summary - Reordered the placement of the `<TeamProjectsPage>` component. - Updated the alert message to clarify that engines, contracts, project settings, and more are managed within projects. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 99d2497 commit 1e924e0

File tree

1 file changed

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

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@ export default async function Page(props: {
5757
</div>
5858

5959
<div className="container flex grow flex-col gap-6 pt-8 pb-20">
60-
<TeamProjectsPage
61-
projects={projectsWithTotalWallets}
62-
team={team}
63-
client={client}
64-
/>
6560
<Alert variant={"info"}>
6661
<CircleAlertIcon className="h-4 w-4" />
6762
<AlertTitle>Looking for Engines?</AlertTitle>
6863
<AlertDescription>
69-
Engines have moved inside projects. Open or create a project to
70-
manage your engines.
64+
Engines, contracts, project settings, and more are now managed
65+
within projects. Open or create a project to access them.
7166
</AlertDescription>
7267
</Alert>
68+
<TeamProjectsPage
69+
projects={projectsWithTotalWallets}
70+
team={team}
71+
client={client}
72+
/>
7373
</div>
7474
</div>
7575
);

0 commit comments

Comments
 (0)