Skip to content

Commit

Permalink
Merge pull request #895 from crypto-com/dev
Browse files Browse the repository at this point in the history
Internal Release v0.6.3
  • Loading branch information
crypto-matto authored Dec 23, 2021
2 parents 425f86c + 43b3bf3 commit b661891
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
*Unreleased*

*Released*
## [v0.6.3] - 2021-12-23
### Bug fixes
- Hide misleading transaction fee on CRC20 tokens

## [v0.6.2] - 2021-12-23
### Bug fixes
- Fix irresponsive transactions when insufficient balance for fee on DApp Browser
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chain-desktop-wallet",
"version": "0.6.2",
"version": "0.6.3",
"description": "Crypto.com Chain Desktop Wallet App",
"repository": "github:crypto-com/chain-desktop-wallet",
"author": "Crypto.org <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/assets/components/FormSend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ const FormSend: React.FC<FormSendProps> = props => {
: ''}
</div>
</div>
{walletAsset?.assetType !== UserAssetType.EVM ? (
{walletAsset?.assetType === UserAssetType.TENDERMINT ? (
<div className="item">
<div className="label">{t('send.modal1.label4')}</div>
<div>{`~${getNormalScaleAmount(getTransactionFee(walletAsset!), walletAsset!)} ${
Expand Down

0 comments on commit b661891

Please sign in to comment.