diff options
author | Sebastian <sebasjm@gmail.com> | 2023-05-10 13:35:18 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-05-10 13:35:18 -0300 |
commit | f281803f1e555b8e8c1e76612b1f6b7128033cd6 (patch) | |
tree | a30f1863a5b5ea27c2e382bb0297e9b9e55de572 /packages/taler-wallet-webextension/src/components/PendingTransactions.tsx | |
parent | 6308c7ea6ba195199ee413c6c485321a013a514a (diff) |
compile again after DD37 impl
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/PendingTransactions.tsx')
-rw-r--r-- | packages/taler-wallet-webextension/src/components/PendingTransactions.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx index 427c4bfee..3866fc991 100644 --- a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx +++ b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx @@ -16,9 +16,9 @@ import { AbsoluteTime, Amounts, - ExtendedStatus, NotificationType, Transaction, + TransactionMajorState, } from "@gnu-taler/taler-util"; import { WalletApiOperation } from "@gnu-taler/taler-wallet-core"; import { Fragment, h, JSX, VNode } from "preact"; @@ -58,7 +58,7 @@ export function PendingTransactions({ goToTransaction }: Props): VNode { !state || state.hasError ? cache.tx : state.response.transactions.filter( - (t) => t.extendedStatus === ExtendedStatus.Pending, + (t) => t.txState.major === TransactionMajorState.Pending, ); if (state && !state.hasError) { |