From aacb598426360bcec7e0c60472e62fbc8d2fa279 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 7 Dec 2019 19:34:48 +0100 Subject: [PATCH] Fix wrong Post proptypes --- src/components/Post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Post.js b/src/components/Post.js index 59ebcd6..4b8d5b3 100644 --- a/src/components/Post.js +++ b/src/components/Post.js @@ -11,7 +11,7 @@ import moment from 'moment' export default class Post extends Component { static propTypes = { isLoading: PropTypes.bool.isRequired, - post: PropTypes.object.isRequired, + post: PropTypes.string.isRequired, config: PropTypes.object.isRequired }