Skip to content

Commit

Permalink
Fix: Minified React error #310
Browse files Browse the repository at this point in the history
  • Loading branch information
CiprianDraghici committed Nov 29, 2024
1 parent ae77768 commit a202a1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/UI/TransactionsTable/TransactionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ const TransactionsTableComponent = ({
} = useGetNetworkConfig();

const interpretedTransactions = useMemo(() => {
if (!address) return [];
if (!address) {
return [];
}
return transactions.map((transaction) =>
getInterpretedTransaction({ transaction, address, explorerAddress })
);
Expand Down

0 comments on commit a202a1f

Please sign in to comment.