summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
index 7f2069fc9..b2a8de014 100644
--- a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
@@ -26,6 +26,7 @@ import {
TalerProtocolTimestamp,
TransactionCommon,
TransactionDeposit,
+ TransactionIdStr,
TransactionMajorState,
TransactionPayment,
TransactionPeerPullCredit,
@@ -63,7 +64,7 @@ const commonTransaction: TransactionCommon = {
major: TransactionMajorState.Done,
},
timestamp: TalerProtocolTimestamp.now(),
- transactionId: "txn:deposit:12",
+ transactionId: "txn:deposit:12" as TransactionIdStr,
type: TransactionType.Deposit,
} as Omit<
Omit<Omit<TransactionCommon, "extendedStatus">, "frozen">,