({local}: LocalConfig)
| 139 | } |
| 140 | |
| 141 | private static async loadDynamicThemeFixes({local}: LocalConfig) { |
| 142 | const fixes = await ConfigManager.loadConfig({ |
| 143 | name: 'Dynamic Theme Fixes', |
| 144 | local, |
| 145 | localURL: CONFIG_URLs.dynamicThemeFixes.local, |
| 146 | remoteURL: CONFIG_URLs.dynamicThemeFixes.remote, |
| 147 | }); |
| 148 | ConfigManager.raw.dynamicThemeFixes = fixes; |
| 149 | ConfigManager.handleDynamicThemeFixes(); |
| 150 | } |
| 151 | |
| 152 | private static async loadInversionFixes({local}: LocalConfig) { |
| 153 | const fixes = await ConfigManager.loadConfig({ |
no test coverage detected