fix: lint

This commit is contained in:
Alex Yang
2026-01-12 03:27:16 -08:00
parent 2a52d53d51
commit 2cb2dc3eb8
2 changed files with 2 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ class ConnectionMutex {
#resolve?: () => void;
async lock(): Promise<void> {
while (this.#promise) {
while (this.#promise !== undefined) {
await this.#promise;
}

View File

@@ -149,7 +149,7 @@ class ConnectionMutex {
#resolve?: () => void;
async lock(): Promise<void> {
while (this.#promise) {
while (this.#promise !== undefined) {
await this.#promise;
}