Skip to content

Commit

Permalink
fix redux-modal breaking feature bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Darmody committed Mar 21, 2016
1 parent a1fdd9e commit 1711df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/containers/Auth/Signin/Signin.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class Signin extends Component {
fetchCaptcha: PropTypes.func.isRequired,
handleHide: PropTypes.func.isRequired,
login: PropTypes.func.isRequired,
modal: PropTypes.object.isRequired,
show: PropTypes.bool,
}

hideModal = () => {
Expand All @@ -44,7 +44,7 @@ export default class Signin extends Component {
}

render() {
const { modal: { show }, captchaCode } = this.props;
const { show, captchaCode } = this.props;
const modalStyle = {
content: {
top: '10%',
Expand Down

0 comments on commit 1711df4

Please sign in to comment.