Save 1 array construction

This commit is contained in:
Willian Mitsuda 2021-10-30 22:14:37 -03:00
parent 3211befaea
commit 41be42d1ce
1 changed files with 2 additions and 2 deletions

View File

@ -278,9 +278,9 @@ const AddressTransactions: React.FC = () => {
feeDisplay={feeDisplay}
feeDisplayToggler={feeDisplayToggler}
/>
{controller ? (
{page ? (
<SelectionContext.Provider value={selectionCtx}>
{controller.getPage().map((tx) => (
{page.map((tx) => (
<TransactionItem
key={tx.hash}
tx={tx}