aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-01-13 16:09:33 -0300
committerSebastian <sebasjm@gmail.com>2023-01-13 16:09:33 -0300
commit0b2bf13deff518c3ebbdaf4a72d2c162790906b7 (patch)
treee8e778cc7cc90daf2a54f32f8c6be5912f814621 /packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
parentbc67ff0c7f298b0657164037ba01e1bc3488202c (diff)
downloadwallet-core-0b2bf13deff518c3ebbdaf4a72d2c162790906b7.tar.xz
using extendedStatus
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/PendingTransactions.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/components/PendingTransactions.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
index 80dc18f49..f9b30907d 100644
--- a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
+++ b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
@@ -16,6 +16,7 @@
import {
AbsoluteTime,
Amounts,
+ ExtendedStatus,
NotificationType,
Transaction,
} from "@gnu-taler/taler-util";
@@ -56,7 +57,9 @@ export function PendingTransactions({ goToTransaction }: Props): VNode {
const transactions =
!state || state.hasError
? cache.tx
- : state.response.transactions.filter((t) => t.pending);
+ : state.response.transactions.filter(
+ (t) => t.extendedStatus === ExtendedStatus.Pending,
+ );
if (state && !state.hasError) {
cache.tx = transactions;