From a51333b693a8fe0b7c2073600d344d1e0b629419 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 29 Nov 2021 14:11:32 -0300 Subject: show better info on transaction error --- .../taler-wallet-webextension/src/wallet/Transaction.stories.tsx | 2 +- packages/taler-wallet-webextension/src/wallet/Transaction.tsx | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet') diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx index a25e2ca80..656c57324 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx @@ -121,7 +121,7 @@ const transactionError = { code: 2000, details: "details", hint: "this is a hint for the error", - message: "message", + message: "this is the error message with get from the app", }; export const Withdraw = createExample(TestedComponent, { diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx index 02c78320a..6cc836f60 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -29,7 +29,7 @@ import { route } from "preact-router"; import { useState } from "preact/hooks"; import emptyImg from "../../static/img/empty.png"; import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType"; -import { ErrorMessage } from "../components/ErrorMessage"; +import { ErrorTalerOperation } from "../components/ErrorTalerOperation"; import { Part } from "../components/Part"; import { Button, @@ -128,7 +128,10 @@ export function TransactionView({ return (
- + {transaction.pending && ( This transaction is not completed )} -- cgit v1.2.3