[SafeMode] Reload was being unreliable for me, so add a timeout of 400ms
This commit is contained in:
parent
4d68c112bc
commit
fbfc7d0d0b
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export async function toggleSafeMode() {
|
||||||
await selectTheme(settings.safeMode?.currentThemeId);
|
await selectTheme(settings.safeMode?.currentThemeId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setTimeout(BundleUpdaterManager.reload);
|
setTimeout(BundleUpdaterManager.reload, 400);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function connectToDebugger(url: string) {
|
export function connectToDebugger(url: string) {
|
||||||
|
|
Loading…
Reference in a new issue