diff --git a/apps/client/src/services/options.ts b/apps/client/src/services/options.ts index 22aaa9cf5..c1590721f 100644 --- a/apps/client/src/services/options.ts +++ b/apps/client/src/services/options.ts @@ -10,6 +10,8 @@ class Options { constructor() { if (!isShare) { this.initializedPromise = server.get>("options").then((data) => this.load(data)); + } else { + this.initializedPromise = Promise.resolve(); } }