Skip to content

Commit

Permalink
fix: [lw-12314] fix pending transaction time on activities page (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
vetalcore authored Feb 21, 2025
1 parent d7be706 commit 4cb26e3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,8 @@ export const mapWalletActivities = memoize(
{ cardanoCoin, assetDetails, isSharedWallet }
) =>
`${transactions.history.map(({ id }) => id).join('')}_${transactions.outgoing.inFlight
.map(({ id }) => id)
// eslint-disable-next-line sonarjs/no-nested-template-literals
.map(({ id, submittedAt }) => `${id}_${submittedAt}`)
.join('')}_${transactions.outgoing.signed?.map(({ tx: { id } }) => id).join('')}_${assetInfo.size}_${
rewardsHistory.all.length
}_${cardanoFiatPrice}_${fiatCurrency.code}_${cardanoCoin?.id}_${assetDetails?.id}_${
Expand Down

0 comments on commit 4cb26e3

Please sign in to comment.