diff options
author | Florian Dold <florian@dold.me> | 2022-08-25 17:18:23 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-08-25 17:18:23 +0200 |
commit | d112a5b6bc7e5e0a47df98451b75145ddfec4bad (patch) | |
tree | 2aa0e0efb0d4179544cd007c48e8f68d43fd51a0 | |
parent | f3231ccdf9a2ce944bdc039fa8351117d18c3fe3 (diff) |
-temporary fix to make webextension compile again
-rw-r--r-- | packages/taler-wallet-webextension/src/components/TransactionItem.tsx | 2 |
1 files 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 index ea260d141..8033b3ee3 100644 --- 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"); } } |