diff --git a/ui/src/components/Comments/index.tsx b/ui/src/components/Comments/index.tsx index 9c467b6b..5e2193b5 100644 --- a/ui/src/components/Comments/index.tsx +++ b/ui/src/components/Comments/index.tsx @@ -78,7 +78,7 @@ class Comment extends React.PureComponent { } {!this.props.comment.repliesError && this.props.comment.replies &&
- {this.props.comment.replies.map((reply) => )} + {this.props.comment.replies.map((reply) => )}
} { this.props.comment.repliesError &&
Error loading replies for this comment
@@ -200,7 +200,7 @@ export default class Comments extends React.PureComponent {
{!this.state.showComments && } {this.state.showComments && } - {this.state.showComments && this.state.comments.map((comment) => )} + {this.state.showComments && this.state.comments.map((comment) => )}
) }