Skip to content

Commit 99e6fb6

Browse files
committed
fix to infinite loading on approve screen
1 parent 5444474 commit 99e6fb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/hooks/useAssetDetails.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export function useAssetDetails(tokenAddress, userAddress, transactionData) {
8686
const tokenData = parseStandardTokenTransactionData(transactionData);
8787
assetStandard = standard;
8888
assetAddress = tokenAddress;
89-
tokenSymbol = symbol;
89+
tokenSymbol = symbol ?? '';
9090
tokenImage = image;
9191
toAddress = getTokenAddressParam(tokenData);
9292
if (assetStandard === ERC721 || assetStandard === ERC1155) {

0 commit comments

Comments
 (0)