Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
sort props 💄
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Dec 15, 2016
1 parent f59f7c5 commit 4c42ded
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions js/src/views/Accounts/List/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ import styles from './list.css';
class List extends Component {
static propTypes = {
accounts: PropTypes.object,
walletsOwners: PropTypes.object,
balances: PropTypes.object,
link: PropTypes.string,
search: PropTypes.array,
certifications: PropTypes.object.isRequired,
empty: PropTypes.bool,
link: PropTypes.string,
order: PropTypes.string,
orderFallback: PropTypes.string,
certifications: PropTypes.object.isRequired,
search: PropTypes.array,
walletsOwners: PropTypes.object,

handleAddSearchToken: PropTypes.func,
fetchCertifiers: PropTypes.func.isRequired,
fetchCertifications: PropTypes.func.isRequired
fetchCertifications: PropTypes.func.isRequired,
handleAddSearchToken: PropTypes.func
};

render () {
Expand All @@ -50,15 +50,15 @@ class List extends Component {
}

componentWillMount () {
const { fetchCertifiers, accounts, fetchCertifications } = this.props;
const { accounts, fetchCertifiers, fetchCertifications } = this.props;
fetchCertifiers();
for (let address in accounts) {
fetchCertifications(address);
}
}

renderAccounts () {
const { accounts, balances, link, empty, handleAddSearchToken, walletsOwners } = this.props;
const { accounts, balances, empty, link, walletsOwners, handleAddSearchToken } = this.props;

if (empty) {
return (
Expand Down

0 comments on commit 4c42ded

Please sign in to comment.