Fix currencyToString function call in Mixnodes page

This commit is contained in:
fmtabbara
2024-02-28 10:05:07 +00:00
parent 7861a0081a
commit a3d7b541e2
+2 -2
View File
@@ -174,7 +174,7 @@ export const PageMixnodes: FCWithChildren = () => {
to={`/network-components/mixnode/${params.row.mix_id}`}
color={useGetMixNodeStatusColor(params.row.status)}
>
{currencyToString(params.value)}
{currencyToString({ amount: params.value })}
</StyledLink>
),
},
@@ -214,7 +214,7 @@ export const PageMixnodes: FCWithChildren = () => {
to={`/network-components/mixnode/${params.row.mix_id}`}
color={useGetMixNodeStatusColor(params.row.status)}
>
{currencyToString(params.value)}
{currencyToString({ amount: params.value })}
</StyledLink>
),
},