From 438e44d3ec18f1d9237d91e12960c2338459c59e Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Fri, 19 Jul 2024 17:18:56 +0530 Subject: [PATCH] chore: removed time tracking on enterprise (#669) --- web/ee/constants/project/settings/features.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 };