1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: remove personal dashboard UI flag (#8795)

This commit is contained in:
Mateusz Kwasniewski 2024-11-20 09:24:08 +01:00 committed by GitHub
parent 5406d4d8d5
commit ec44c5b5e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 7 deletions

View File

@ -87,7 +87,6 @@ export type UiFlags = {
enableLegacyVariants?: boolean;
flagCreator?: boolean;
onboardingUI?: boolean;
personalDashboardUI?: boolean;
purchaseAdditionalEnvironments?: boolean;
unleashAI?: boolean;
releasePlans?: boolean;

View File

@ -49,7 +49,6 @@ export type IFlagKey =
| 'removeUnsafeInlineStyleSrc'
| 'onboardingUI'
| 'projectRoleAssignment'
| 'personalDashboardUI'
| 'trackLifecycleMetrics'
| 'purchaseAdditionalEnvironments'
| 'originMiddlewareRequestLogging'
@ -246,10 +245,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_PROJECT_ROLE_ASSIGNMENT,
false,
),
personalDashboardUI: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_PERSONAL_DASHBOARD_UI,
false,
),
trackLifecycleMetrics: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_TRACK_LIFECYCLE_METRICS,
false,

View File

@ -49,7 +49,6 @@ process.nextTick(async () => {
enableLegacyVariants: false,
extendedMetrics: true,
onboardingUI: true,
personalDashboardUI: true,
purchaseAdditionalEnvironments: true,
originMiddlewareRequestLogging: true,
unleashAI: true,