Skip to content

Commit

Permalink
Fix dropdown arrow appearing on mobile on executions with 0 token tra…
Browse files Browse the repository at this point in the history
…nsfers (aragon#1099)
  • Loading branch information
Evalir authored Mar 17, 2020
1 parent ceb1471 commit 2c6358d
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 2c6358d

Please sign in to comment.