From 0d5c1fb6f7cd0b08fb24db1f356b5cc4d8d2c45b Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 24 Jun 2021 14:19:20 -0400 Subject: [PATCH] remove async reaction body in ThemeStore Signed-off-by: Sebastian Malton --- src/renderer/theme.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/theme.store.ts b/src/renderer/theme.store.ts index febd6f64c1..8d8e7cba28 100644 --- a/src/renderer/theme.store.ts +++ b/src/renderer/theme.store.ts @@ -83,7 +83,7 @@ export class ThemeStore extends Singleton { autoBind(this); // auto-apply active theme - reaction(() => this.activeThemeId, async themeId => { + reaction(() => this.activeThemeId, themeId => { try { this.applyTheme(this.getThemeById(themeId)); } catch (err) {