diff --git a/.github/stale.yml b/.github/stale.yml
index 3693313a..910720f4 100644
--- a/.github/stale.yml
+++ b/.github/stale.yml
@@ -15,4 +15,4 @@ markComment: >
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: >
- This issue has been automatically closed. Please reopen if needed.
+ This issue has been automatically closed. Reopen if needed.
diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml
index dc1cdb26..6e2ef43a 100644
--- a/.github/workflows/issue-check.yml
+++ b/.github/workflows/issue-check.yml
@@ -16,5 +16,5 @@ jobs:
First, check to make sure you're using the latest version of Hiro Wallet for Web,
which can be found at https://www.hiro.so/wallet/install-web
- If you're using the latest version, please make sure to include more relevant information about
+ If you're using the latest version, make sure to include more relevant information about
your bug in the issue title and description. Once you've updated your issue, feel free to re-open it.
diff --git a/src/app/features/switch-account-drawer/components/account-list-unavailable.tsx b/src/app/features/switch-account-drawer/components/account-list-unavailable.tsx
index 484f492f..72a8a078 100644
--- a/src/app/features/switch-account-drawer/components/account-list-unavailable.tsx
+++ b/src/app/features/switch-account-drawer/components/account-list-unavailable.tsx
@@ -14,7 +14,7 @@ export const AccountListUnavailable = memo(() => (
Unable to load account information
We're unable to load information about your accounts. This may be a problem with the
- wallet's API. If this problem persists, please contact support.
+ wallet's API. If this problem persists, contact support.
diff --git a/src/app/pages/add-network/add-network.tsx b/src/app/pages/add-network/add-network.tsx
index 3cf9ff47..8a88bc79 100644
--- a/src/app/pages/add-network/add-network.tsx
+++ b/src/app/pages/add-network/add-network.tsx
@@ -42,7 +42,7 @@ export const AddNetwork = () => {
onSubmit={async values => {
const { name, url, key } = values;
if (!isValidUrl(url)) {
- setError('Please enter a valid URL');
+ setError('Enter a valid URL');
return;
}
setLoading(true);
diff --git a/src/app/pages/onboarding/set-password/set-password.tsx b/src/app/pages/onboarding/set-password/set-password.tsx
index 9cde6e8f..10b4a27c 100644
--- a/src/app/pages/onboarding/set-password/set-password.tsx
+++ b/src/app/pages/onboarding/set-password/set-password.tsx
@@ -142,8 +142,8 @@ export const SetPasswordPage = () => {
!formik.isSubmitting &&
!strengthResult.meetsAllStrengthRequirements ? (
- Please use a stronger password. Longer than 12 characters, with symbols,
- numbers, and words.
+ Use a stronger password. Longer than 12 characters, with symbols, numbers, and
+ words.
) : null}
diff --git a/src/app/pages/send-tokens/components/send-max-button.tsx b/src/app/pages/send-tokens/components/send-max-button.tsx
index b23d9548..8dedb85d 100644
--- a/src/app/pages/send-tokens/components/send-max-button.tsx
+++ b/src/app/pages/send-tokens/components/send-max-button.tsx
@@ -39,7 +39,7 @@ export function SendMaxButton(props: SendMaxProps): JSX.Element | null {
const isStx = selectedAsset?.type === 'stx';
const fireInactiveSendMaxButtonToast = useCallback(() => {
- if (isUndefined(fee)) toast.error('Loading fee, please try again');
+ if (isUndefined(fee)) toast.error('Loading fee, try again');
toast.error('A fee must be set to calculate max STX transfer amount');
}, [fee]);
diff --git a/src/app/pages/transaction-request/components/transaction-error/error-messages.tsx b/src/app/pages/transaction-request/components/transaction-error/error-messages.tsx
index fa449ed8..6feef2db 100644
--- a/src/app/pages/transaction-request/components/transaction-error/error-messages.tsx
+++ b/src/app/pages/transaction-request/components/transaction-error/error-messages.tsx
@@ -144,7 +144,7 @@ export const ExpiredRequestErrorMessage = memo(props => {
>
- Please sign out of the app and sign back in to re-authenticate into the application. This should
- help you successfully sign your transaction with the Hiro Wallet.
+ Sign out of the app and sign back in to re-authenticate into the application. This should help
+ you successfully sign your transaction with the Hiro Wallet.
,
];
const title = 'Unauthorized request';
diff --git a/src/app/pages/unlock.tsx b/src/app/pages/unlock.tsx
index 159b0412..946918bc 100644
--- a/src/app/pages/unlock.tsx
+++ b/src/app/pages/unlock.tsx
@@ -22,8 +22,8 @@ import { RouteUrls } from '@shared/route-urls';
import { SettingsSelectors } from '@tests/integration/settings.selectors';
const waitingMessages: WaitingMessages = {
- '2': 'Please wait a few seconds…',
- '10': 'Still working, please wait.',
+ '2': 'Verifying password…',
+ '10': 'Still working…',
'20': 'Almost there.',
};
diff --git a/tests/integration/network.selectors.ts b/tests/integration/network.selectors.ts
index 5827f385..aa1482c6 100644
--- a/tests/integration/network.selectors.ts
+++ b/tests/integration/network.selectors.ts
@@ -4,6 +4,6 @@ export const NetworkSelectors = {
NetworkKey: 'network-key',
BtnAddNetwork: 'btn-add-network',
ErrorText: 'error-text',
- EmptyAddressError: 'Please enter a valid URL',
+ EmptyAddressError: 'Enter a valid URL',
NoNodeFetch: 'Unable to fetch info from node.',
};