Commit cac38b0 1 parent 5e9698f commit cac38b0 Copy full SHA for cac38b0
File tree 2 files changed +5
-12
lines changed
2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ export type UiFlags = {
93
93
granularAdminPermissions ?: boolean ;
94
94
frontendHeaderRedesign ?: boolean ;
95
95
dataUsageMultiMonthView ?: boolean ;
96
- uiGlobalFontSize ?: Variant ;
96
+ uiGlobalFontSize ?: boolean ;
97
97
} ;
98
98
99
99
export interface IVersionInfo {
Original file line number Diff line number Diff line change @@ -310,17 +310,10 @@ const flags: IFlags = {
310
310
process . env . UNLEASH_EXPERIMENTAL_DATA_USAGE_MULTI_MONTH_VIEW ,
311
311
false ,
312
312
) ,
313
- uiGlobalFontSize : {
314
- name : 'uiGlobalFontSize' ,
315
- enabled : parseEnvVarBoolean (
316
- process . env . EXPERIMENTAL_UI_GLOBAL_FONT_SIZE_NAME ,
317
- false ,
318
- ) ,
319
- payload : {
320
- type : PayloadType . JSON ,
321
- value : '14' ,
322
- } ,
323
- } ,
313
+ uiGlobalFontSize : parseEnvVarBoolean (
314
+ process . env . EXPERIMENTAL_UI_GLOBAL_FONT_SIZE_NAME ,
315
+ false ,
316
+ ) ,
324
317
} ;
325
318
326
319
export const defaultExperimentalOptions : IExperimentalOptions = {
You can’t perform that action at this time.
0 commit comments