cleaning up

This commit is contained in:
ingawei 2022-10-12 16:00:01 -07:00
parent 6b2e7514de
commit 55c7a0e977
2 changed files with 0 additions and 5 deletions

View File

@ -91,7 +91,6 @@ export function AnswerCommentInput(props: {
username: answerResponse.username, username: answerResponse.username,
} }
const color = getAnswerColor(answerResponse, answersArray) const color = getAnswerColor(answerResponse, answersArray)
console.log('color:', color)
return ( return (
<> <>
<div className="opacity-60"> <div className="opacity-60">

View File

@ -137,9 +137,6 @@ const CommentsTabContent = memo(function CommentsTabContent(props: {
) )
const topLevelComments = commentsByParent['_'] ?? [] const topLevelComments = commentsByParent['_'] ?? []
// if (contract.outcomeType === 'FREE_RESPONSE') {
// return <FreeResponseComments />
// } else {
return ( return (
<> <>
<ContractCommentInput className="mb-5" contract={contract} /> <ContractCommentInput className="mb-5" contract={contract} />
@ -174,7 +171,6 @@ const CommentsTabContent = memo(function CommentsTabContent(props: {
))} ))}
</> </>
) )
// }
}) })
const BetsTabContent = memo(function BetsTabContent(props: { const BetsTabContent = memo(function BetsTabContent(props: {