()
| 471 | } |
| 472 | |
| 473 | private static async loadData() { |
| 474 | Extension.init(); |
| 475 | await Promise.all([ |
| 476 | Extension.stateManager!.loadState(), |
| 477 | UserStorage.loadSettings(), |
| 478 | ]); |
| 479 | } |
| 480 | |
| 481 | private static onColorSchemeChange = async (isDark: boolean) => { |
| 482 | if (Extension.wasLastColorSchemeDark === isDark) { |
no test coverage detected