diff --git a/src/components/atoms/Price/index.tsx b/src/components/atoms/Price/index.tsx index 28c1b22c2..324620d1e 100644 --- a/src/components/atoms/Price/index.tsx +++ b/src/components/atoms/Price/index.tsx @@ -28,10 +28,15 @@ export default function Price({ conversion={conversion} type={price.type} /> - ) : !price || price?.value === 0 ? ( + ) : !price || !price.address || price.address === '' ? (
- No price found{' '} - + No price set{' '} + +
+ ) : price.isConsumable !== 'true' ? ( +
+ Low liquidity{' '} +
) : ( diff --git a/src/components/organisms/AssetActions/Consume.tsx b/src/components/organisms/AssetActions/Consume.tsx index 42b4b4bdb..adfbb5edd 100644 --- a/src/components/organisms/AssetActions/Consume.tsx +++ b/src/components/organisms/AssetActions/Consume.tsx @@ -158,13 +158,7 @@ export default function Consume({
- {isConsumable ? ( - - ) : ( -
- There is not enough liquidity in the pool to buy this data set. -
- )} + {!isInPurgatory && }