spacing updates

This commit is contained in:
fmtabbara
2022-01-13 17:07:18 +00:00
parent 144df00782
commit c0959e853e
4 changed files with 3 additions and 7 deletions
@@ -49,7 +49,7 @@ export const SendConfirmation = ({
<TransactionDetails
details={[
{ primary: 'Recipient', secondary: data.to_address },
{ primary: 'Amount', secondary: data.amount.amount + MAJOR_CURRENCY },
{ primary: 'Amount', secondary: `${data.amount.amount} ${MAJOR_CURRENCY}` },
]}
/>
</>
+1 -1
View File
@@ -34,7 +34,7 @@ export const SendReview = ({ transferFee }: { transferFee?: string }) => {
<Divider light />
</Grid>
<Grid item xs={12}>
<SendReviewField title="Amount" subtitle={`${values.amount} ${MAJOR_CURRENCY}`} />
<SendReviewField title="Amount" subtitle={`${values.amount} ${MAJOR_CURRENCY}`} />
</Grid>
<Grid item xs={12}>
<Divider light />
@@ -1,4 +0,0 @@
import React from 'react'
import { Divider, Stack, Typography } from '@mui/material'
import { TMixnodeBondDetails } from '../../types'
+1 -1
View File
@@ -10,7 +10,7 @@ export const Profile = () => {
<Box sx={{ p: 3 }}>
<Stack spacing={3}>
<Typography sx={{ color: 'grey.600' }}>
Node identity {mixnodeDetails?.mix_node.identity_key || 'n/a'}
Node identity: {mixnodeDetails?.mix_node.identity_key || 'n/a'}
</Typography>
<Divider />
<TextField label="Mixnode name" disabled />