From e631f5f00bda8d89eb14aec5cca5fd550b5ea90f Mon Sep 17 00:00:00 2001 From: rulifarel <160815275+rulifarel@users.noreply.github.com> Date: Thu, 11 Dec 2025 23:13:15 +0700 Subject: [PATCH] Change MongoDB connection URI credentials Updated MongoDB connection URI with new user credentials. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index b471157..e74980b 100644 --- a/app.js +++ b/app.js @@ -7,7 +7,7 @@ async function run() { // a valid username and password! Note that in a production environment, // you do not want to store your password in plain-text here. const uri = - "mongodb+srv://:@?retryWrites=true&w=majority"; + "mongodb+srv://:@?retryWrites=true&w=majority"; // The MongoClient is the object that references the connection to our // datastore (Atlas, for example)