diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-06 22:48:18 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-06 22:48:18 +0800 |
commit | ff3c77f7c47475d77defecfeb894a8c86c003997 (patch) | |
tree | 3d3c1b6c80557ca628bc15f868dffcb106addd56 /packages/react-shared | |
parent | 4527e9ce000d3eafcd55552df0809ea31271ba89 (diff) | |
download | dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.gz dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.bz2 dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.lz dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.xz dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.tar.zst dexon-sol-tools-ff3c77f7c47475d77defecfeb894a8c86c003997.zip |
Remove stray console.lgos
Diffstat (limited to 'packages/react-shared')
-rw-r--r-- | packages/react-shared/src/utils/utils.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/react-shared/src/utils/utils.ts b/packages/react-shared/src/utils/utils.ts index 6dd0b9993..ce7effaff 100644 --- a/packages/react-shared/src/utils/utils.ts +++ b/packages/react-shared/src/utils/utils.ts @@ -48,7 +48,6 @@ export const utils = { let finalText = charArray.join(''); const exceptions = { 'EIP ': 'E I P', 'ZRX ': 'Z R X', 'ERC ': 'E R C' }; _.each(exceptions, (spaced, normal) => { - console.log(finalText, spaced, normal); if (_.includes(finalText, spaced)) { finalText = finalText.replace(spaced, normal); } |