Skip to content

Commit 15e1bd5

Browse files
committed
chore: hide Engine projects from list
1 parent fe3351c commit 15e1bd5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

apps/dashboard/src/app/team/[team_slug]/(team)/~/projects/TeamProjectsPage.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ export function TeamProjectsPage(props: {
7575
);
7676
}
7777

78+
// @TODO: HACK hide Engine projects from the list.
79+
_projectsToShow = _projectsToShow.filter(
80+
(project) => !project.name.startsWith("Cloud-hosted Engine ("),
81+
);
82+
7883
return _projectsToShow;
7984
}, [searchTerm, sortBy, projects]);
8085

0 commit comments

Comments
 (0)