1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-10 17:53:36 +02:00

fix: merge order for UI config

This commit is contained in:
Ivar Conradi Østhus 2022-11-04 14:43:12 +01:00 committed by Gastón Fournier
parent 302cb176c0
commit 377a99753f
No known key found for this signature in database
GPG Key ID: BC3E6CD5E81633B8

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) => {