Skip to content

Commit

Permalink
Merge pull request #1369 from emeraldpay/fix/small-fixes
Browse files Browse the repository at this point in the history
solution: several ui fixes
  • Loading branch information
splix authored Dec 29, 2023
2 parents 1a9179d + cc5bbed commit d60903a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ export default connect<StateProps, DispatchProps, OwnProps, IState>(
groupedEntries,
wallet,
blockchains: wallet?.entries
.filter(({ receiveDisabled }) => !receiveDisabled)
.reduce<string[]>((carry, entry) => {
const blockchainCode = blockchainIdToCode(entry.blockchain);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const WalletSettingsDialog: React.FC<OwnProps & StateProps & DispatchProps> = ({
<DialogTitle>Edit Wallet Details</DialogTitle>
<DialogContent>
{wallet == null ? (
<Alert severity="warning">Wallet not found</Alert>
<Alert severity="warning">Wallet not found.</Alert>
) : (
<Grid container>
<Grid item xs={3}>
Expand Down
3 changes: 1 addition & 2 deletions packages/ui/src/components/common/Form/FormAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import * as React from 'react';
const useStyles = makeStyles<Theme>((theme) =>
createStyles({
container: {
marginBottom: '20px !important',
marginTop: '20px !important',
marginBottom: theme.spacing(2),
},
children: {
flexDirection: 'column',
Expand Down

0 comments on commit d60903a

Please sign in to comment.