From 2e118708d646deb0f5aa76225a7426a674300f95 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Sun, 23 Aug 2020 15:03:13 +0530 Subject: [PATCH] fix: regression --- src/commands/deploy/heroku.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/deploy/heroku.js b/src/commands/deploy/heroku.js index 5bafeabd8..366f6ae64 100644 --- a/src/commands/deploy/heroku.js +++ b/src/commands/deploy/heroku.js @@ -67,7 +67,7 @@ const setConfigVar = async (configVar, dir, value) => { if (configVar === 'DB_URL') { const { uri } = await inquirer.prompt({ type: 'password', - name: 'value', + name: 'uri', message: 'Please provide the path to a cloud based MongoDB URI', validate: validateInput, });