checking me null

This commit is contained in:
okbel
2018-05-02 20:08:29 -03:00
parent 58cc078d25
commit ccb62263c1
@@ -21,5 +21,5 @@ export default compose(
connect(null, mapDispatchToProps),
withCancelAccountDeletion,
withData,
excludeIf(props => !props.root.me.scheduledDeletionDate)
excludeIf(({ root: { me } }) => !me || !me.scheduledDeletionDate)
)(AccountDeletionRequestedSign);