post update hotfixes (#580)
* fix: fixed showing 0 on farm page if no desposited vaults * fix: chnage USDC’s name to Noble
This commit is contained in:
parent
abd36bc502
commit
6415b55cd6
@ -52,10 +52,12 @@ function Content() {
|
||||
return (
|
||||
<>
|
||||
<VaultUnlockBanner vaults={unlockedVaults} />
|
||||
{deposited.length && (
|
||||
{deposited.length > 0 && (
|
||||
<DepositedVaultsTable data={deposited as DepositedVault[]} isLoading={false} />
|
||||
)}
|
||||
{available.length && <AvailableVaultsTable data={available as Vault[]} isLoading={false} />}
|
||||
{available.length > 0 && (
|
||||
<AvailableVaultsTable data={available as Vault[]} isLoading={false} />
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ export const ASSETS: Asset[] = [
|
||||
},
|
||||
{
|
||||
symbol: 'USDC',
|
||||
name: 'USDC',
|
||||
name: 'Noble',
|
||||
id: 'USDC',
|
||||
denom:
|
||||
ENV.NETWORK === NETWORK.TESTNET
|
||||
|
Loading…
Reference in New Issue
Block a user