diff --git a/new-lamassu-admin/src/pages/Assets/Assets.js b/new-lamassu-admin/src/pages/Assets/Assets.js index d29427c3..dd160ea6 100644 --- a/new-lamassu-admin/src/pages/Assets/Assets.js +++ b/new-lamassu-admin/src/pages/Assets/Assets.js @@ -15,7 +15,7 @@ import { H4, Label2, P, Info2 } from 'src/components/typography' import styles from './Assets.styles' const useStyles = makeStyles(styles) -const StyledCell = withStyles({ +const Cell = withStyles({ root: { borderBottom: '4px solid white', padding: 0, @@ -67,27 +67,27 @@ const AssetsAmountTable = ({ title, data = [], numToRender }) => { if (idx < numToRender) { return ( - +

{asset.display}

-
- + +

{`${selectAmountPrefix(asset)} ${formatCurrency(Math.abs(asset.amount))} ${ asset.currency }`}

-
+
) } return null })} - + {`Total ${R.toLower(title)}`} - - + + {`${formatCurrency(totalAmount)} ${currency}`} - +