Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
owencraston committed Feb 27, 2024
1 parent 497d176 commit 365e928
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/UI/WalletAccount/WalletAccount.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('WalletAccount', () => {
);
expect(getByText(mockAccount.name)).toBeDefined();
});
it('displays custom account name when ens is defined but account name is not the default', () => {
it('displays custom account name when ENS is defined but account name is not the default', () => {
const ensName = 'test.eth';
const { getByText } = renderWithProvider(
<WalletAccount account={mockAccount} ens={ensName} />,
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/Wallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const Wallet = ({ navigation }: any) => {
const providerConfig = useSelector(selectProviderConfig);

/**
* A list of all the users accounts and a mapping of ens names to account addresses if they exist
* A list of all the user accounts and a mapping of ENS name to account address if they exist
*/
const { accounts, ensByAccountAddress } = useAccounts();

Expand Down

0 comments on commit 365e928

Please sign in to comment.