diff --git a/web/components/comments/comment-actions.tsx b/web/components/comments/comment-actions.tsx index d79eaa1cbb..1560f3bb9c 100644 --- a/web/components/comments/comment-actions.tsx +++ b/web/components/comments/comment-actions.tsx @@ -78,9 +78,6 @@ export function CommentActions(props: { > - {diff != 0 && ( - {Math.round(Math.abs(diff))} - )} {diff > 0 ? ( ) : diff < 0 ? ( @@ -88,6 +85,9 @@ export function CommentActions(props: { ) : ( )} + {diff != 0 && ( + {Math.round(Math.abs(diff))} + )}