We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24ff14 commit 043d23cCopy full SHA for 043d23c
apps/dashboard/src/components/settings/ApiKeys/Create/index.tsx
@@ -41,7 +41,10 @@ import { z } from "zod";
41
import { projectDomainsSchema, projectNameSchema } from "../validations";
42
43
const ALL_PROJECT_SERVICES = SERVICES.filter(
44
- (srv) => srv.name !== "relayer" && srv.name !== "chainsaw",
+ (srv) =>
45
+ srv.name !== "relayer" &&
46
+ srv.name !== "chainsaw" &&
47
+ srv.name !== "engineCloud", // TODO enable once API server is out
48
);
49
50
export type CreateProjectPrefillOptions = {
0 commit comments