@@ -554,14 +587,16 @@ const LineGraph: React.FC = ({
{currentPointIndex === datas.length - 1
? parseTimeTVL(getLocalizeTime(new Date().toString()))
- .time
+ .time
: parseTimeTVL(datas[currentPointIndex]?.time)?.time ||
- "0"}
+ "0"}
)}
- {`$${toPriceFormat(BigNumber(datas[currentPointIndex]?.value).toString())}`}
+ {`$${toPriceFormat(
+ BigNumber(datas[currentPointIndex]?.value).toString(),
+ )}`}
) : null
@@ -588,56 +623,85 @@ const LineGraph: React.FC