@@ -5,7 +5,7 @@ import BCHIcon from 'assets/bch-logo.png'
55import EyeIcon from 'assets/eye-icon.png'
66import CheckIcon from 'assets/check-icon.png'
77import XIcon from 'assets/x-icon.png'
8- import TableContainerGetter from '../../components/ TableContainer/TableContainerGetter'
8+ import TableContainerGetter from '../TableContainer/TableContainerGetter'
99import { compareNumericString } from 'utils/index'
1010import moment from 'moment-timezone'
1111import { XEC_TX_EXPLORER_URL , BCH_TX_EXPLORER_URL } from 'constants/index'
@@ -27,8 +27,8 @@ function fetchTransactionsByPaybuttonId (paybuttonId: string): Function {
2727 }
2828 } )
2929 const responseCount = await fetch ( `/api/paybutton/transactions/count/${ paybuttonId } ` )
30- const transactions = await response . json ( ) ;
31- const count = await responseCount . json ( ) ;
30+ const transactions = await response . json ( )
31+ const count = await responseCount . json ( )
3232 return {
3333 data : transactions . transactions ,
3434 totalCount : count
@@ -94,12 +94,12 @@ export default ({ paybuttonId, addressSyncing, tableRefreshCount, timezone = mom
9494 < Image src = { EyeIcon } alt = 'View on explorer' />
9595 </ div >
9696 </ a >
97- </ div >
97+ </ div >
9898 )
9999 }
100100 } ,
101101 {
102- Header : ( ) => ( < div style = { { marginRight : '1px' } } > Address</ div > ) ,
102+ Header : ( ) => ( < div style = { { marginRight : '1px' } } > Address</ div > ) ,
103103 accessor : 'address.address' ,
104104 shrinkable : true ,
105105 Cell : ( cellProps ) => {
@@ -109,7 +109,7 @@ export default ({ paybuttonId, addressSyncing, tableRefreshCount, timezone = mom
109109 </ div >
110110 )
111111 }
112- } ,
112+ }
113113 ] ,
114114 [ ]
115115 )
0 commit comments