Skip to content

Commit

Permalink
Revert "Fix dropdown arrow appearing on mobile on executions with 0 t…
Browse files Browse the repository at this point in the history
…oken transfers (#1099)"

This reverts commit b15435d.
  • Loading branch information
Evalir authored Mar 17, 2020
1 parent b15435d commit afd3eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/agent/app/src/components/Transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ const Transactions = React.memo(function Transactions({
)
}}
renderEntryExpansion={({ tokenTransfers }) => {
if (tokenTransfers.length <= 1) {
if (tokenTransfers.length === 1) {
return null
}

Expand Down

0 comments on commit afd3eed

Please sign in to comment.