From 094efe4ed21228b1f3537df65528874700e31e53 Mon Sep 17 00:00:00 2001 From: Alexandre Magno Date: Sun, 17 Nov 2024 23:12:10 +0100 Subject: [PATCH] removing console --- modules/users/userAccountCountries.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/users/userAccountCountries.js b/modules/users/userAccountCountries.js index a0b185ea..0ea81a41 100644 --- a/modules/users/userAccountCountries.js +++ b/modules/users/userAccountCountries.js @@ -9,7 +9,6 @@ module.exports = Promise.method(async function userAccount (userParameters) { const userAccount = await getUserAccount({ id }) const accountCountry = userAccount.country return stripe.countrySpecs.retrieve(accountCountry).then((countrySpecs) => { - console.log('countrySpecs', countrySpecs) return countrySpecs }) })