Skip to content

Commit

Permalink
fix: Erroneous proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
y-lohse committed Sep 4, 2019
1 parent 8626e34 commit 786e44e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ class AccountsListModal extends React.Component {
AccountsListModal.propTypes = {
konnector: PropTypes.object.isRequired,
accounts: PropTypes.array.isRequired,
history: PropTypes.func.isRequired
history: PropTypes.object.isRequired
}
export default withRouter(AccountsListModal)
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ KonnectorAccountTabs.propTypes = {
onAccountDeleted: PropTypes.func.isRequired,
addAccount: PropTypes.func.isRequired,
t: PropTypes.func.isRequired,
history: PropTypes.func.isRequired
history: PropTypes.object.isRequired
}

export default withLocales(withRouter(KonnectorAccountTabs))

0 comments on commit 786e44e

Please sign in to comment.