mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 08:31:37 -05:00
fix: lint
This commit is contained in:
@@ -147,7 +147,7 @@ class ConnectionMutex {
|
||||
#resolve?: () => void;
|
||||
|
||||
async lock(): Promise<void> {
|
||||
while (this.#promise) {
|
||||
while (this.#promise !== undefined) {
|
||||
await this.#promise;
|
||||
}
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ class ConnectionMutex {
|
||||
#resolve?: () => void;
|
||||
|
||||
async lock(): Promise<void> {
|
||||
while (this.#promise) {
|
||||
while (this.#promise !== undefined) {
|
||||
await this.#promise;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user