Removed isRequired for whole user entity (#5902)

This is already done in components that consume these PropTypes
This commit is contained in:
Nick Taylor 2020-02-05 17:52:53 -05:00 committed by GitHub
parent 261a4f9efa
commit f2b79a94dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,4 @@ export const userPropTypes = PropTypes.shape({
name: PropTypes.string.isRequired,
profile_image_url: PropTypes.string.isRequired,
summary: PropTypes.string.isRequired,
}).isRequired;
});