taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit d112a5b6bc7e5e0a47df98451b75145ddfec4bad
parent f3231ccdf9a2ce944bdc039fa8351117d18c3fe3
Author: Florian Dold <florian@dold.me>
Date:   Thu, 25 Aug 2022 17:18:23 +0200

-temporary fix to make webextension compile again

Diffstat:
Mpackages/taler-wallet-webextension/src/components/TransactionItem.tsx | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx @@ -113,6 +113,8 @@ export function TransactionItem(props: { tx: Transaction }): VNode { pending={tx.pending} /> ); + default: + throw Error("unsupported transaction type"); } }