Skip to content

Commit

Permalink
fix(pnk-stats-list-card): remove extra !
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Feb 7, 2019
1 parent e8d2408 commit 092d4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pnk-stats-list-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const PNKStatsListCard = () => {
d.returnValues._disputeID
)
if (dispute && dispute2) {
if (!dispute.period !== '4') {
if (dispute.period !== '4') {
acc.jurorAtStakeByID[
d.returnValues._disputeID
] = dispute2.jurorAtStake.map(drizzle.web3.utils.toBN)
Expand Down

0 comments on commit 092d4e7

Please sign in to comment.