Skip to content

Commit

Permalink
Refine token verifiedness check
Browse files Browse the repository at this point in the history
This is a follow up on this comment: #288 (comment)
  • Loading branch information
steveluscher authored Sep 14, 2023
1 parent b91b274 commit 31966a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/token-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export async function getFullTokenInfo(
name: sdkTokenInfo.name,
symbol: sdkTokenInfo.symbol,
tags,
verified: !!(legacyCdnTokenInfo || sdkTokenInfo.verified),
verified: sdkTokenInfo.verified ?? false,
};
}

Expand Down

0 comments on commit 31966a8

Please sign in to comment.