spacing updates
This commit is contained in:
@@ -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}` },
|
||||
]}
|
||||
/>
|
||||
</>
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user