Skip to content

Commit

Permalink
added type to clientPromise in with-mongodb/lib (#40339)
Browse files Browse the repository at this point in the history
## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
  • Loading branch information
S0UPernova committed Sep 8, 2022
1 parent 45d68ae commit 1aa341f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-mongodb/lib/mongodb.ts
Expand Up @@ -8,7 +8,7 @@ const uri = process.env.MONGODB_URI
const options = {}

let client
let clientPromise
let clientPromise: Promise<MongoClient>

if (!process.env.MONGODB_URI) {
throw new Error('Please add your Mongo URI to .env.local')
Expand Down

0 comments on commit 1aa341f

Please sign in to comment.