From 1aa341f635e0e47e31fd94c3d4504bbb51725c9d Mon Sep 17 00:00:00 2001 From: S0UPernova <79978982+S0UPernova@users.noreply.github.com> Date: Thu, 8 Sep 2022 05:44:38 -0700 Subject: [PATCH] added type to clientPromise in with-mongodb/lib (#40339) ## 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) --- examples/with-mongodb/lib/mongodb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-mongodb/lib/mongodb.ts b/examples/with-mongodb/lib/mongodb.ts index 7aaf63e04cec..9397929118bb 100644 --- a/examples/with-mongodb/lib/mongodb.ts +++ b/examples/with-mongodb/lib/mongodb.ts @@ -8,7 +8,7 @@ const uri = process.env.MONGODB_URI const options = {} let client -let clientPromise +let clientPromise: Promise if (!process.env.MONGODB_URI) { throw new Error('Please add your Mongo URI to .env.local')