diff --git a/src/components/atoms/Price/index.tsx b/src/components/atoms/Price/index.tsx index 28c1b22c2..caa09d8c5 100644 --- a/src/components/atoms/Price/index.tsx +++ b/src/components/atoms/Price/index.tsx @@ -28,11 +28,16 @@ export default function Price({ conversion={conversion} type={price.type} /> - ) : !price || price?.value === 0 ? ( + ) : !price || !price.address ? (
- No price found{' '} + No price set{' '}
+ ) : price.isConsumable !== 'true' ? ( +
+ Not enough 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 && }