From ff308a0596bc09c2b886681995eaf85ba1ada49d Mon Sep 17 00:00:00 2001 From: xihuwenhua Date: Sun, 20 Jul 2025 11:17:25 +0800 Subject: [PATCH] chore: remove redundant words in comment Signed-off-by: xihuwenhua --- docs/standard-operating-procedures/development/releases.md | 2 +- .../shared/lib/core/wallet/utils/processAndAddToActivities.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/standard-operating-procedures/development/releases.md b/docs/standard-operating-procedures/development/releases.md index 0628a0eb472..c5b6b1019d2 100644 --- a/docs/standard-operating-procedures/development/releases.md +++ b/docs/standard-operating-procedures/development/releases.md @@ -254,7 +254,7 @@ To release a hotfix we will aim to follow the below sub processes. ### 1. Internal Testing -Once the the PR is deemed ready for a review, as a team we can all build the hotfix branch locally, and test all the core functionality of the application, as well as hotfix functionality. +Once the PR is deemed ready for a review, as a team we can all build the hotfix branch locally, and test all the core functionality of the application, as well as hotfix functionality. This will usually last between half a day and 1 full day. Any updates can be commited directly to the hotfix branch. When we are happy that the application passes our testings criteria we can move on to the next steps. diff --git a/packages/shared/lib/core/wallet/utils/processAndAddToActivities.ts b/packages/shared/lib/core/wallet/utils/processAndAddToActivities.ts index 9edf950e8c1..3eb119dc111 100644 --- a/packages/shared/lib/core/wallet/utils/processAndAddToActivities.ts +++ b/packages/shared/lib/core/wallet/utils/processAndAddToActivities.ts @@ -7,7 +7,7 @@ import { generateActivities, preprocessOutgoingTransaction } from '.' // We pass the account as a parameter, // because logging out while transaction is pending, -// clears the the selectedAccount store at this point. +// clears the selectedAccount store at this point. export async function processAndAddToActivities(transaction: Transaction, account: IAccountState): Promise { const preprocessedTransaction = await preprocessOutgoingTransaction(transaction, account) const activities = await generateActivities(preprocessedTransaction, account)