From f281803f1e555b8e8c1e76612b1f6b7128033cd6 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 10 May 2023 13:35:18 -0300 Subject: compile again after DD37 impl --- .../taler-wallet-webextension/src/components/PendingTransactions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/taler-wallet-webextension/src/components/PendingTransactions.tsx') 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) { -- cgit v1.2.3