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