This line throws the error: `... const user = await (await Users()).insert(newUser); ...` Replace `insert(newUser)` with `insertOne(newUser)` to eliminate the error. `... const user = await (await Users()).insertOne(newUser); ...`