From 06bde7f2b993141415ca11b22a626042a16723c6 Mon Sep 17 00:00:00 2001 From: Amir Hossein Salar Date: Thu, 6 May 2021 19:38:38 +0430 Subject: [PATCH] Fix for the network label issue --- web/src/utils/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/utils/wallet.js b/web/src/utils/wallet.js index 3702a42e37..604e60ab4c 100644 --- a/web/src/utils/wallet.js +++ b/web/src/utils/wallet.js @@ -29,7 +29,7 @@ export const getNetworkLabelByKey = (network) => { case 'trx': return 'TRC20'; default: - network.toUpperCase(); + return network.toUpperCase(); } } else { return network;