-temporary fix to make webextension compile again

This commit is contained in:
Florian Dold 2022-08-25 17:18:23 +02:00
parent f3231ccdf9
commit d112a5b6bc
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -113,6 +113,8 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
pending={tx.pending} pending={tx.pending}
/> />
); );
default:
throw Error("unsupported transaction type");
} }
} }