From 365e928e771a15bf3d1678708dde2586da756919 Mon Sep 17 00:00:00 2001 From: Owen Craston Date: Tue, 27 Feb 2024 14:54:22 -0800 Subject: [PATCH] update comments --- app/components/UI/WalletAccount/WalletAccount.test.tsx | 2 +- app/components/Views/Wallet/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/UI/WalletAccount/WalletAccount.test.tsx b/app/components/UI/WalletAccount/WalletAccount.test.tsx index b3daf871a8c..96ec498eee1 100644 --- a/app/components/UI/WalletAccount/WalletAccount.test.tsx +++ b/app/components/UI/WalletAccount/WalletAccount.test.tsx @@ -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( , diff --git a/app/components/Views/Wallet/index.tsx b/app/components/Views/Wallet/index.tsx index cb80325a34e..3321ff0eb88 100644 --- a/app/components/Views/Wallet/index.tsx +++ b/app/components/Views/Wallet/index.tsx @@ -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();