1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
This commit is contained in:
Matthias Kretschmann 2021-03-01 16:24:55 +01:00
parent 0303c52f3e
commit 3607084efc
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -31,12 +31,12 @@ export default function Price({
) : !price || !price.address || price.address === '' ? (
<div className={styles.empty}>
No price set{' '}
<Tooltip content="No pricing mechanism has been set yet on this asset." />
<Tooltip content="No pricing mechanism has been set on this asset yet." />
</div>
) : price.isConsumable !== 'true' ? (
<div className={styles.empty}>
Not enough liquidity{' '}
<Tooltip content="This pool does not have enough liquidity for using thisa data set." />
Low liquidity{' '}
<Tooltip content="This pool does not have enough liquidity for using this data set." />
</div>
) : (
<Loader message="Retrieving price..." />