Skip to content

Commit

Permalink
textField inside DialogContent
Browse files Browse the repository at this point in the history
  • Loading branch information
nmro184 committed Jun 2, 2024
1 parent a404fca commit 10c471d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/components/Settings/People/DeleteConfirmationDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@ const DeleteConfirmationDialog = ({
<FormattedMessage {...messages.deleteAccountConfirmation} />
</DialogContentText>
)}
<TextField
autoFocus={true}
fullWidth={true}
label={
<FormattedMessage
{...messages.deleteAccountFinal}
values={{ deleteAccount: DELETE_ACCOUNT }}
/>
}
onChange={handleConfirmationChange}
/>
</DialogContent>
<TextField
autoFocus={true}
label={
<FormattedMessage
{...messages.deleteAccountFinal}
values={{ deleteAccount: DELETE_ACCOUNT }}
/>
}
onChange={handleConfirmationChange}
style={{ margin: '16px' }}
/>
{!isDeletingAccount && (
<DialogActions>
<Button
Expand Down

0 comments on commit 10c471d

Please sign in to comment.