Explorar o código

Tokenomics: round token value

Joystream Stats %!s(int64=3) %!d(string=hai) anos
pai
achega
adce3349f3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/components/Tokenomics/index.tsx

+ 1 - 1
src/components/Tokenomics/index.tsx

@@ -23,7 +23,7 @@ const CouncilReports = (props: IProps) => {
     .filter((e) => e.date)
     .forEach((e) => {
       const date = e.date.split("T")[0];
-      tokenValue[date] = { date, price: e.price * 1000000 };
+      tokenValue[date] = { date, price: (e.price * 1000000).toFixed(1) };
     });
 
   return (