Skip to content

Commit b661891

Browse files
authored
Merge pull request #895 from crypto-com/dev
Internal Release v0.6.3
2 parents 425f86c + 43b3bf3 commit b661891

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
*Unreleased*
66

77
*Released*
8+
## [v0.6.3] - 2021-12-23
9+
### Bug fixes
10+
- Hide misleading transaction fee on CRC20 tokens
11+
812
## [v0.6.2] - 2021-12-23
913
### Bug fixes
1014
- Fix irresponsive transactions when insufficient balance for fee on DApp Browser

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Crypto.com Chain Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.org <[email protected]>",

src/pages/assets/components/FormSend.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ const FormSend: React.FC<FormSendProps> = props => {
397397
: ''}
398398
</div>
399399
</div>
400-
{walletAsset?.assetType !== UserAssetType.EVM ? (
400+
{walletAsset?.assetType === UserAssetType.TENDERMINT ? (
401401
<div className="item">
402402
<div className="label">{t('send.modal1.label4')}</div>
403403
<div>{`~${getNormalScaleAmount(getTransactionFee(walletAsset!), walletAsset!)} ${

0 commit comments

Comments
 (0)