Removing useless resize alert function in PostBody

Этот коммит содержится в:
Christopher Speller
2015-11-02 10:32:00 -05:00
родитель 1e7ac66e3b
Коммит d4ec6d3bf4
3 изменённых файлов: 2 добавлений и 10 удалений

Просмотреть файл

@@ -204,7 +204,6 @@ export default class Post extends React.Component {
posts={posts}
handleCommentClick={this.handleCommentClick}
retryPost={this.retryPost}
resize={this.props.resize}
/>
<PostInfo
ref='info'
@@ -228,6 +227,5 @@ Post.propTypes = {
sameUser: React.PropTypes.bool,
sameRoot: React.PropTypes.bool,
hideProfilePic: React.PropTypes.bool,
isLastComment: React.PropTypes.bool,
resize: React.PropTypes.func
isLastComment: React.PropTypes.bool
};