Skip to content

Commit

Permalink
Show name in DeleteAccount modal
Browse files Browse the repository at this point in the history
  • Loading branch information
buberdds committed Nov 14, 2023
1 parent 8849e12 commit 8a7dcb7
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ export const DeleteAccount = ({ onCancel, onDelete, wallet }: DeleteAccountProps
'Are you sure you want to delete the following account?',
)}
</Text>
<Account address={wallet.address} balance={undefined} displayBalance={false} isActive />
<Account
address={wallet.address}
balance={undefined}
displayBalance={false}
isActive
name={wallet.name}
/>

<DeleteInputForm onCancel={onCancel} onConfirm={onDelete}>
<label htmlFor="type_delete">
Expand Down

0 comments on commit 8a7dcb7

Please sign in to comment.