Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
FredrikOseberg committed Apr 13, 2018
1 parent 5ad6c6b commit a125f4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class Login extends Component {
history.push('/home')

getBalance(networks, selectedNetworkId, account).then(results => setBalance(results.neo, results.gas))
getTransactions(networks, selectedNetworkId, account).then(transactions => setTransactions(transaction))
getTransactions(networks, selectedNetworkId, account).then(transactions => setTransactions(transactions))
})

.catch(e => {
Expand Down
2 changes: 0 additions & 2 deletions src/app/components/TransactionList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import TransactionCard from '../TransactionCard'
import SecondaryButton from '../common/buttons/SecondaryButton'
import FlashMessage from '../FlashMessage'

import { formatGas } from '../../utils/helpers'

import style from './TransactionList.css'

const TransactionList = ({ transactions, transactionHistoryError, getTransactions }) => {
Expand Down

0 comments on commit a125f4a

Please sign in to comment.