Remove ability to tip comments

This commit is contained in:
James Grugett 2022-07-27 10:36:32 -07:00
parent bd5d3d2afc
commit 6be321fb88
2 changed files with 0 additions and 4 deletions

View File

@ -29,7 +29,6 @@ import { LoadingIndicator } from 'web/components/loading-indicator'
import { PaperAirplaneIcon } from '@heroicons/react/outline'
import { track } from 'web/lib/service/analytics'
import { useEvent } from 'web/hooks/use-event'
import { Tipper } from '../tipper'
import { CommentTipMap, CommentTips } from 'web/hooks/use-tip-txns'
import { useWindowSize } from 'web/hooks/use-window-size'
@ -189,7 +188,6 @@ export function FeedComment(props: {
const {
contract,
comment,
tips,
betsBySameUser,
probAtCreatedTime,
truncate,
@ -282,7 +280,6 @@ export function FeedComment(props: {
shouldTruncate={truncate}
/>
<Row className="mt-2 items-center gap-6 text-xs text-gray-500">
<Tipper comment={comment} tips={tips ?? {}} />
{onReplyClick && (
<button
className="font-bold hover:underline"

View File

@ -242,7 +242,6 @@ const GroupMessage = memo(function GroupMessage_(props: {
{formatMoney(sum(Object.values(tips)))}
</span>
)}
{!isCreatorsComment && <Tipper comment={comment} tips={tips} />}
</Row>
</Col>
)