From e09e9e2005c292f7a72475c5a4d58ff8ea49cc61 Mon Sep 17 00:00:00 2001 From: vetalcore Date: Fri, 26 Jul 2024 16:14:26 +0300 Subject: [PATCH] fix(staking): [lw-11067] fix has pending tx check on staking page (#1325) --- .../overview/helpers/hasPendingDelegationTransaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/staking/src/features/overview/helpers/hasPendingDelegationTransaction.ts b/packages/staking/src/features/overview/helpers/hasPendingDelegationTransaction.ts index c28721887..2fd5861d3 100644 --- a/packages/staking/src/features/overview/helpers/hasPendingDelegationTransaction.ts +++ b/packages/staking/src/features/overview/helpers/hasPendingDelegationTransaction.ts @@ -8,5 +8,5 @@ export const hasPendingDelegationTransaction = (walletActivities: AssetActivityL (type in DelegationActivityType || type === ConwayEraCertificatesTypes.Registration || type === ConwayEraCertificatesTypes.Unregistration) && - (status === ActivityStatus.PENDING || ActivityStatus.AWAITING_COSIGNATURES) + (status === ActivityStatus.PENDING || status === ActivityStatus.AWAITING_COSIGNATURES) );