From 9181c1e81b32950142943d7e47163c4cd0c260c8 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 22 May 2023 13:14:51 -0300 Subject: fixing txId reference based on nominal type --- .../src/wallet/Notifications/stories.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet/Notifications') diff --git a/packages/taler-wallet-webextension/src/wallet/Notifications/stories.tsx b/packages/taler-wallet-webextension/src/wallet/Notifications/stories.tsx index 49ee21268..54f601c42 100644 --- a/packages/taler-wallet-webextension/src/wallet/Notifications/stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Notifications/stories.tsx @@ -19,7 +19,11 @@ * @author Sebastian Javier Marchano (sebasjm) */ -import { AbsoluteTime, AttentionType } from "@gnu-taler/taler-util"; +import { + AbsoluteTime, + AttentionType, + TransactionIdStr, +} from "@gnu-taler/taler-util"; import * as tests from "@gnu-taler/web-util/testing"; import { ReadyView } from "./views.js"; @@ -34,7 +38,7 @@ export const Ready = tests.createExample(ReadyView, { read: false, info: { type: AttentionType.KycWithdrawal, - transactionId: "123", + transactionId: "123" as TransactionIdStr, }, }, { @@ -42,7 +46,7 @@ export const Ready = tests.createExample(ReadyView, { read: false, info: { type: AttentionType.MerchantRefund, - transactionId: "123", + transactionId: "123" as TransactionIdStr, }, }, { -- cgit v1.2.3