1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: merge order for UI config

This commit is contained in:
Ivar Conradi Østhus 2022-11-04 14:43:12 +01:00
parent 9577a81528
commit bf521b58fd
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -108,7 +108,7 @@ function loadUI(options: IUnleashOptions): IUIConfig {
E: true,
ENABLE_DARK_MODE_SUPPORT: false,
};
return mergeAll([uiO, ui]);
return mergeAll([ui, uiO]);
}
const dateHandlingCallback = (connection, callback) => {