diff --git a/web/ee/constants/project/settings/features.tsx b/web/ee/constants/project/settings/features.tsx index 5a6c17aeda..5620f38348 100644 --- a/web/ee/constants/project/settings/features.tsx +++ b/web/ee/constants/project/settings/features.tsx @@ -1 +1,11 @@ -export * from "ce/constants/project/settings/features"; +import { + TFeatureList, + TProjectFeatures, + PROJECT_FEATURES_LIST as PROJECT_FEATURES_LIST_CE, +} from "ce/constants/project/settings/features"; + +export const PROJECT_FEATURES_LIST: TProjectFeatures = { + project_features: PROJECT_FEATURES_LIST_CE.project_features, +}; + +export type { TFeatureList, TProjectFeatures };