Skip to content

Commit

Permalink
Fix a build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
delivan committed Jul 30, 2024
1 parent e21bdae commit d520086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const main = async () => {
.replace(/(\ |\.)/g, "-"),
"chain-identifier": chainIdentifier,
token: chainInfo.currencies[0].coinDenom,
"short-address": chainInfo.bech32Config.bech32PrefixAccAddr,
"short-address": chainInfo.bech32Config?.bech32PrefixAccAddr,
label: {
url: chainInfo?.chainSymbolImageUrl,
},
Expand All @@ -103,7 +103,7 @@ const main = async () => {
name: chainInfo.chainName,
"chain-identifier": chainIdentifier,
token: chainInfo.currencies[0].coinDenom,
"short-address": chainInfo.bech32Config.bech32PrefixAccAddr,
"short-address": chainInfo.bech32Config?.bech32PrefixAccAddr,
label: {
url: chainInfo?.chainSymbolImageUrl,
},
Expand Down

0 comments on commit d520086

Please sign in to comment.