From 8f90b540fb8f6ae003e763e581701da87cd5cd5f Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Fri, 21 May 2021 17:31:41 +0530 Subject: [PATCH] removed consoles --- apps/remix-ide/src/app/ui/modal-dialog-custom.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/remix-ide/src/app/ui/modal-dialog-custom.js b/apps/remix-ide/src/app/ui/modal-dialog-custom.js index 19907698a2..d2b1daba44 100644 --- a/apps/remix-ide/src/app/ui/modal-dialog-custom.js +++ b/apps/remix-ide/src/app/ui/modal-dialog-custom.js @@ -8,7 +8,6 @@ module.exports = { return modal('Alert', yo`
${title}
`, null, { label: null }) }, prompt: function (title, text, inputValue, ok, cancel, focus) { - console.log('inside prompt -> 1', title) return prompt(title, text, false, inputValue, ok, cancel, focus) }, promptPassphrase: function (title, text, inputValue, ok, cancel) { @@ -89,7 +88,6 @@ const validateInput = (e) => { } function prompt (title, text, hidden, inputValue, ok, cancel, focus) { - console.log('inside prompt -> 2', title) if (!inputValue) inputValue = '' var type = hidden ? 'password' : 'text' var input = yo`