diff --git a/extensions/commands/theme-variant/index.ts b/extensions/commands/theme-variant/index.ts index d9de977..08aaa4f 100644 --- a/extensions/commands/theme-variant/index.ts +++ b/extensions/commands/theme-variant/index.ts @@ -33,9 +33,9 @@ export const THEME_VARIANT = () => { return; } - setCustomSettings(customSettings); - - THEME_ICONS().then(() => reloadWindow()).catch(error => console.trace(error)); + setCustomSettings(customSettings).then(() => { + THEME_ICONS().then(() => reloadWindow()).catch(error => console.trace(error)) + }); }); }); } \ No newline at end of file