Skip to content

Commit f1a965b

Browse files
committed
Enable engineCloud service in project creation modal (#7520)
### TL;DR Enabled Engine Cloud service in the project creation modal. ### What changed? Removed the filter that was excluding the "engineCloud" service from the list of available project services in the create project modal. This change allows users to select Engine Cloud when creating a new project. ### How to test? 1. Open the dashboard application 2. Click on "Create Project" button 3. Verify that Engine Cloud appears as an available service option in the project creation modal ### Why make this change? The Engine Cloud service was previously excluded with a TODO comment indicating it should be enabled once the API server was ready. This change suggests that the API server is now available, so Engine Cloud can be offered as a service option during project creation. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Updated project service selection to allow "engineCloud" as an available option. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 9f88b5c commit f1a965b

File tree

1 file changed

+1
-4
lines changed
  • apps/dashboard/src/@/components/project/create-project-modal

1 file changed

+1
-4
lines changed

apps/dashboard/src/@/components/project/create-project-modal/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@ import { projectDomainsSchema, projectNameSchema } from "@/schema/validations";
4040
import { toArrFromList } from "@/utils/string";
4141

4242
const ALL_PROJECT_SERVICES = SERVICES.filter(
43-
(srv) =>
44-
srv.name !== "relayer" &&
45-
srv.name !== "chainsaw" &&
46-
srv.name !== "engineCloud", // TODO enable once API server is out
43+
(srv) => srv.name !== "relayer" && srv.name !== "chainsaw",
4744
);
4845

4946
export type CreateProjectPrefillOptions = {

0 commit comments

Comments
 (0)