Skip to content

Commit

Permalink
fix(staking): [lw-11067] fix has pending tx check on staking page (#1325
Browse files Browse the repository at this point in the history
)
  • Loading branch information
vetalcore authored Jul 26, 2024
1 parent 1c78d28 commit e09e9e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);

0 comments on commit e09e9e2

Please sign in to comment.