Clean up toast logic in App.jsx

This commit is contained in:
Berkeley Martinez
2016-01-09 22:48:48 -08:00
parent 632f596821
commit f65b6472dd

View File

@ -46,14 +46,9 @@ export default contain(
toast: PropTypes.object
},
componentWillReceiveProps({ toast: nextToast }) {
componentWillReceiveProps({ toast: nextToast = {} }) {
const { toast = {} } = this.props;
if (
toast &&
nextToast &&
toast.id !== nextToast.id
) {
if (toast.id !== nextToast.id) {
this.refs.toaster[nextToast.type || 'success'](
nextToast.message,
nextToast.title,