Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeBoy committed Mar 16, 2024
1 parent ceab23d commit 6970bc6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions ui/page/transaction/transaction_details_page.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,12 @@ destinationAddrLoop:
txDestinationAddress = accountName
}
}
if txDestinationAddress != "" {
pg.destAddressClickables = append(pg.destAddressClickables, pg.Theme.NewClickable(true))
pg.txDestinationAddresses = append(pg.txDestinationAddresses, txDestinationAddress)
break destinationAddrLoop
} else {
if txDestinationAddress == "" {
continue
}
pg.destAddressClickables = append(pg.destAddressClickables, pg.Theme.NewClickable(true))
pg.txDestinationAddresses = append(pg.txDestinationAddresses, txDestinationAddress)
break destinationAddrLoop
}

if output.AccountNumber == -1 {
Expand Down

0 comments on commit 6970bc6

Please sign in to comment.