File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
apps/dashboard/src/components/settings/ApiKeys Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ import { z } from "zod";
4141import { projectDomainsSchema , projectNameSchema } from "../validations" ;
4242
4343const ALL_PROJECT_SERVICES = SERVICES . filter (
44- ( srv ) => srv . name !== "relayer" && srv . name !== "chainsaw" ,
44+ ( srv ) =>
45+ srv . name !== "relayer" &&
46+ srv . name !== "chainsaw" &&
47+ srv . name !== "engineCloud" , // TODO enable once API server is out
4548) ;
4649
4750export type CreateProjectPrefillOptions = {
Original file line number Diff line number Diff line change @@ -125,4 +125,4 @@ export type ApiKeyPayConfigValidationSchema = z.infer<
125125> ;
126126
127127// FIXME: Remove
128- export const HIDDEN_SERVICES = [ "relayer" , "chainsaw" ] ;
128+ export const HIDDEN_SERVICES = [ "relayer" , "chainsaw" , "engineCloud" ] ;
You can’t perform that action at this time.
0 commit comments