diff --git a/web/components/tipper.tsx b/web/components/tipper.tsx index a8c7cb4e..9d5cac84 100644 --- a/web/components/tipper.tsx +++ b/web/components/tipper.tsx @@ -74,11 +74,8 @@ export function Tipper(prop: { comment: Comment; tips: CommentTips }) { me && saveTip(me, comment, localTip - savedTip + delta) } - if (me && comment.userId === me.id) { - return <> - } - - const canUp = me && me.balance >= localTip + LIKE_TIP_AMOUNT + const canUp = + me && comment.userId !== me.id && me.balance >= localTip + LIKE_TIP_AMOUNT return (