Merge pull request #17816 from overleaf/bg-eslint-rule-for-find-with-await
add eslint rule for find with await GitOrigin-RevId: 7e78104e610073ff3c151d7314753c8301a8c787
This commit is contained in:
@@ -2,7 +2,7 @@ const { db, waitForDb } = require('../app/src/infrastructure/mongodb')
|
||||
|
||||
async function updateStringDates() {
|
||||
await waitForDb()
|
||||
const users = await db.users.find({
|
||||
const users = db.users.find({
|
||||
splitTests: { $exists: true },
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user