don't show price on error

This commit is contained in:
keyan 2023-03-04 12:16:50 -06:00
parent a3e928dc42
commit ff34bd0124
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export default function Price () {
}, [])
const { price, fiatSymbol } = usePrice()
if (!price) return null
if (!price || price < 0) return null
const handleClick = () => {
if (asSats === 'yep') {