diff --git a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx index 2bba86dba..80dc18f49 100644 --- a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx +++ b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx @@ -58,10 +58,12 @@ export function PendingTransactions({ goToTransaction }: Props): VNode { ? cache.tx : state.response.transactions.filter((t) => t.pending); + if (state && !state.hasError) { + cache.tx = transactions; + } if (!transactions.length) { return ; } - cache.tx = transactions; return (