Skip to content

Commit

Permalink
Merge pull request #745 from ahslr/Hotfix
Browse files Browse the repository at this point in the history
Fix for the network label issue
  • Loading branch information
abeikverdi authored May 6, 2021
2 parents 08127a4 + 06bde7f commit 7927fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/utils/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const getNetworkLabelByKey = (network) => {
case 'trx':
return 'TRC20';
default:
network.toUpperCase();
return network.toUpperCase();
}
} else {
return network;
Expand Down

0 comments on commit 7927fc4

Please sign in to comment.