Skip to content

Commit

Permalink
fix(Modal): temp disable blur
Browse files Browse the repository at this point in the history
  • Loading branch information
zouxuoz committed Oct 22, 2018
1 parent 5f08f71 commit 70e3e3e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/atoms/Modal/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ class Modal extends PureComponent<ModalProps, ModalState> {
if (!this.props.isOpen) {
Modal.openedModals += 1;

this.updateBlurClass();
// TODO: Revert blur
// this.updateBlurClass();
}
}

Expand All @@ -94,7 +95,8 @@ class Modal extends PureComponent<ModalProps, ModalState> {
this.props.onClose();
}

this.updateBlurClass();
// TODO: Revert blur
// this.updateBlurClass();
}
}

Expand Down

0 comments on commit 70e3e3e

Please sign in to comment.