mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
More linting
This commit is contained in:
parent
17f3f90d80
commit
5d24621b56
@ -26,8 +26,6 @@ function ShiftListItem () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ShiftListItem.prototype.render = function () {
|
ShiftListItem.prototype.render = function () {
|
||||||
var props = this.props
|
|
||||||
const { response } = props
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
h('.transaction-list-item.flex-row', {
|
h('.transaction-list-item.flex-row', {
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
const Component = require('react').Component
|
const Component = require('react').Component
|
||||||
const h = require('react-hyperscript')
|
const h = require('react-hyperscript')
|
||||||
const inherits = require('util').inherits
|
const inherits = require('util').inherits
|
||||||
const genAccountLink = require('../../lib/account-link')
|
|
||||||
|
|
||||||
const TransactionListItem = require('./transaction-list-item')
|
const TransactionListItem = require('./transaction-list-item')
|
||||||
|
|
||||||
@ -14,7 +13,7 @@ function TransactionList () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TransactionList.prototype.render = function () {
|
TransactionList.prototype.render = function () {
|
||||||
const { txsToRender, network, unconfMsgs, address } = this.props
|
const { txsToRender, network, unconfMsgs } = this.props
|
||||||
var shapeShiftTxList
|
var shapeShiftTxList
|
||||||
if (network === '1') {
|
if (network === '1') {
|
||||||
shapeShiftTxList = this.props.shapeShiftTxList
|
shapeShiftTxList = this.props.shapeShiftTxList
|
||||||
|
Loading…
Reference in New Issue
Block a user