diff --git a/README.md b/README.md index 973eaff3f..d1eae5331 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ We've recently updated FlyteConsole with a number of changes, including a refres Most of these changes are non-breaking however, there are a few things we've changed: -- removed FLYTE_NAVIGATION -- removed registry -- removed Google Analytics +- `FLYTE_NAVIGATION` and `HORIZONTAL_LAYOUT` env vars have been removed. These were used to provide configuration options to the page layout and navigation but are no longer needed as the new navigation is fixed. +- `ENABLE_GA` and `GA_TRACKING_ID` env vars have been removed. These were used to configure Google Analytics; Google Analytics was removed. +- `ExternalConfigurationProviderProps` and `registry` have been removed. These were used to provide override capabilities to specific components and were removed for simplicity. ## 📦 Install Dependencies diff --git a/packages/common/src/environment/index.ts b/packages/common/src/environment/index.ts index 894f2a5da..e8e2163c4 100644 --- a/packages/common/src/environment/index.ts +++ b/packages/common/src/environment/index.ts @@ -18,7 +18,6 @@ export interface Env extends NodeJS.ProcessEnv { */ BASE_HREF?: string; DISABLE_CONSOLE_ROUTE_PREFIX?: string; - FLYTE_NAVIGATION?: string; DISABLE_ANALYTICS?: string; NODE_ENV?: 'development' | 'production' | 'test'; diff --git a/website/console/env/index.ts b/website/console/env/index.ts index 2ce29d33c..44e49a153 100644 --- a/website/console/env/index.ts +++ b/website/console/env/index.ts @@ -64,8 +64,6 @@ const DISABLE_CONSOLE_ROUTE_PREFIX = process.env.DISABLE_CONSOLE_ROUTE_PREFIX || */ const ASSETS_PATH = `${BASE_URL}/assets/`; -const FLYTE_NAVIGATION = process.env.FLYTE_NAVIGATION || ''; - /** * This is used to prevent use of the app during outages. * If this is set to 'true', the app will display a maintenance page. @@ -83,7 +81,6 @@ const processEnv = { BASE_URL, BASE_HREF, DISABLE_CONSOLE_ROUTE_PREFIX, - FLYTE_NAVIGATION, MAINTENANCE_MODE, };