Skip to content

Commit

Permalink
Small syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Jun 14, 2021
1 parent c9d4faf commit 7ffa79a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -39,9 +39,9 @@ export default class AdaTransactionsStore extends Store<StoresMap, ActionsMap> {
tx.withdrawals.flatMap(w => w.value.values).forEach(t => tokenIds.add(t.identifier));
}
});
let network = request.publicDeriver.getParent().getNetworkInfo();
const network = request.publicDeriver.getParent().getNetworkInfo();
const missingMetaTokenIds = [...tokenIds]
.filter(tokenId => tokenId?.length > 0
.filter(tokenId => tokenId.length > 0
&& !localStorage.getItem(createTokenLocalStorageKey(tokenId, network)))
.map(id => id.split('.')[0]);
const tokenInfo = await stateFetcher.getTokenInfo({
Expand Down

0 comments on commit 7ffa79a

Please sign in to comment.