Fix duplicate minus signal
This commit is contained in:
parent
364c57406a
commit
977783b0bc
|
@ -23,7 +23,7 @@ const Blip: React.FC<BlipProps> = ({ value }) => {
|
||||||
value > 0 ? "text-green-500" : "text-red-500"
|
value > 0 ? "text-green-500" : "text-red-500"
|
||||||
} text-3xl`}
|
} text-3xl`}
|
||||||
>
|
>
|
||||||
{value > 0 ? `+${value}` : `-${value}`}
|
{value > 0 ? `+${value}` : `${value}`}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</Transition>
|
</Transition>
|
||||||
|
|
Loading…
Reference in New Issue