Skip to content

Commit

Permalink
fix: add back account name data-testid (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanewood authored Nov 7, 2024
1 parent b2c65b2 commit e6dad16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Accounts/components/AccountName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export default function AccountName({
>
<Stack sx={{ flexDirection: 'row', alignItems: 'center' }}>
{!isAccountNameEditing && (
<Typography variant="h6">{accountName}</Typography>
<Typography data-testid="account-name" variant="h6">
{accountName}
</Typography>
)}
{isAccountNameEditing && (
<AccountNameInput
Expand Down

0 comments on commit e6dad16

Please sign in to comment.