remove _Root filter for projects

This commit is contained in:
x
2025-04-30 10:31:40 -04:00
parent 7f1f9e7fd0
commit 727a6a7701

View File

@@ -69,6 +69,5 @@ export const listTeamCityProjects = async (appConnection: TTeamCityConnection) =
}
);
// Filter out the root project. Should not be seen by users.
return resp.data.project.filter((proj) => proj.id !== "_Root");
return resp.data.project;
};