Skip to content

Commit

Permalink
fix type error while building
Browse files Browse the repository at this point in the history
Eason Smith committed Aug 12, 2024
1 parent acd3373 commit ffcc616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/nft/utils/utils.ts
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ export function getLogo(from: Asset | Chain) {

export function getChainLogo(name: string) {
const chain = chains.find(chain => chain.chain_name === name)
return chain ? getLogo(chain) : null;
return chain ? getLogo(chain as any) : null;
}

export function getStargazeProfileLink(address: string | undefined) {

0 comments on commit ffcc616

Please sign in to comment.