diff options
Remove console.logs
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/metamask-connect.js | 1 | ||||
-rw-r--r-- | ui/i18n-helper.js | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/ui/app/metamask-connect.js b/ui/app/metamask-connect.js index 38fc05930..097be8dc3 100644 --- a/ui/app/metamask-connect.js +++ b/ui/app/metamask-connect.js @@ -13,7 +13,6 @@ const _higherOrderMapStateToProps = (mapStateToProps) => { const stateProps = mapStateToProps ? mapStateToProps(state, ownProps) : ownProps - console.log(`state.localeMessages`, state.localeMessages); stateProps.t = t.bind(null, state.localeMessages) return stateProps } diff --git a/ui/i18n-helper.js b/ui/i18n-helper.js index 70555f239..dc83f45c9 100644 --- a/ui/i18n-helper.js +++ b/ui/i18n-helper.js @@ -2,7 +2,6 @@ const log = require('loglevel') const getMessage = (locale, key, substitutions) => { - console.log(`locale, key, substitutions`, locale, key, substitutions); // check locale is loaded if (!locale) { // throw new Error('Translator - has not loaded a locale yet.') |