Fix notices race condition

This commit is contained in:
Zack Rauen 2023-11-07 16:42:08 -05:00
parent 0ffbd5cf04
commit cf181cac86
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import DOMManager from "@modules/dommanager";
export default class Notices {
static get baseClass() {return this.__baseClass ??= WebpackModules.getByProps("container", "base")?.base;}
static get baseClass() {return this.__baseClass ??= WebpackModules.getByProps("container", "base", "sidebar")?.base;}
static get errorPageClass() {return this.__errorPageClass ??= WebpackModules.getByProps("errorPage")?.errorPage;}
/** Shorthand for `type = "info"` for {@link module:Notices.show} */