Rework the 'main menu' to be a screen that's always in history

This commit is contained in:
Paul Frazee
2022-12-06 10:11:32 -06:00
parent 11423fc25c
commit 1e2ee001a8
7 changed files with 300 additions and 379 deletions
+4 -1
View File
@@ -138,7 +138,10 @@ export class SessionModel {
}
async connect(): Promise<void> {
this._connectPromise ??= this._connect()
if (this._connectPromise) {
return this._connectPromise
}
this._connectPromise = this._connect()
await this._connectPromise
this._connectPromise = undefined
}