diff options
author | Brian Kim <brian@tagg.id> | 2021-05-17 12:01:22 -0700 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-05-17 12:01:22 -0700 |
commit | 6a74b270d24f04e36821398b83863d5b97e1b44b (patch) | |
tree | 0fec39a777eb51608615334cc7568e76b9f10a69 /src/components/comments | |
parent | 37b37f296a59aea43e73f615ae6cb042b2242e87 (diff) |
Fixed bugs for plus sign in profile
Diffstat (limited to 'src/components/comments')
-rw-r--r-- | src/components/comments/CommentsContainer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/comments/CommentsContainer.tsx b/src/components/comments/CommentsContainer.tsx index 595ec743..d839ef38 100644 --- a/src/components/comments/CommentsContainer.tsx +++ b/src/components/comments/CommentsContainer.tsx @@ -49,7 +49,7 @@ const CommentsContainer: React.FC<CommentsContainerProps> = ({ count += 1 + comments[i].replies_count; } return count; - } + }; useEffect(() => { const loadComments = async () => { |