Skip to content

Commit

Permalink
chore: bluna logo + nullcheck (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick134-bit authored Apr 17, 2024
1 parent 225612c commit 014b0da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/Pages/Bonding/BondingActions/Withdraw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Withdraw = ({

const [tokenList] = useTokenList()
const unbondingTokens = unbondingRequests?.map((row) => {
const tokenSymbol = tokenList.tokens.find((token) => token.denom === row.denom)?.symbol
const tokenSymbol = tokenList?.tokens.find((token) => token.denom === row.denom)?.symbol
return {
amount: row.amount,
tokenSymbol,
Expand Down
8 changes: 4 additions & 4 deletions public/mainnet/phoenix-1/pools_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@
"LUNA"
],
"displayName": "bLUNA-LUNA",
"displayLogo1": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png",
"displayLogo1": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png",
"displayLogo2": "/logos/luna.svg",
"pool_assets": [
{
Expand All @@ -377,7 +377,7 @@
"symbol": "bLUNA",
"name": "bLuna",
"decimals": 6,
"logoURI": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png",
"logoURI": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png",
"tags": [],
"native": false,
"denom": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml"
Expand Down Expand Up @@ -602,7 +602,7 @@
"SOLID"
],
"displayName": "bLUNA-SOLID",
"displayLogo1": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png",
"displayLogo1": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png",
"displayLogo2": "/logos/solid.svg",
"pool_assets": [
{
Expand All @@ -612,7 +612,7 @@
"symbol": "bLUNA",
"name": "bLuna",
"decimals": 6,
"logoURI": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png",
"logoURI": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png",
"tags": [],
"native": false,
"denom": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml"
Expand Down

0 comments on commit 014b0da

Please sign in to comment.