Skip to content

Commit 08099aa

Browse files
committed
Fix linter
1 parent 1c18b9a commit 08099aa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function openDb(rootDriver) {
7373
if (!db.opened) return
7474
for (let unsubscribe of subscriptions) await unsubscribe()
7575
db.opened = false
76-
return rootDriver.close()
76+
await rootDriver.close()
7777
}
7878
}
7979
return db

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"./index.js": "{ openDb, migrateIfNeeded }",
9292
"./sqlocal/index.js": "{ sqlocalDriver }"
9393
},
94-
"limit": "704 B"
94+
"limit": "708 B"
9595
}
9696
],
9797
"engines": {

0 commit comments

Comments
 (0)