Remove old check in free answer comment rendering

This commit is contained in:
Marshall Polaris 2022-09-20 14:06:03 -07:00
parent 30ce80d0c9
commit 3fd29c4a56

View File

@ -48,7 +48,6 @@ export function FeedAnswerCommentGroup(props: {
const answerElementId = `answer-${answer.id}` const answerElementId = `answer-${answer.id}`
const commentsByCurrentUser = (user && commentsByUserId[user.id]) ?? [] const commentsByCurrentUser = (user && commentsByUserId[user.id]) ?? []
const isFreeResponseContractPage = !!commentsByCurrentUser
const scrollAndOpenReplyInput = useEvent( const scrollAndOpenReplyInput = useEvent(
(comment?: ContractComment, answer?: Answer) => { (comment?: ContractComment, answer?: Answer) => {
@ -95,8 +94,6 @@ export function FeedAnswerCommentGroup(props: {
<span className="whitespace-pre-line text-lg"> <span className="whitespace-pre-line text-lg">
<Linkify text={text} /> <Linkify text={text} />
</span> </span>
{isFreeResponseContractPage && (
<div className="sm:hidden"> <div className="sm:hidden">
<button <button
className="text-xs font-bold text-gray-500 hover:underline" className="text-xs font-bold text-gray-500 hover:underline"
@ -105,9 +102,7 @@ export function FeedAnswerCommentGroup(props: {
Reply Reply
</button> </button>
</div> </div>
)}
</Col> </Col>
{isFreeResponseContractPage && (
<div className="justify-initial hidden sm:block"> <div className="justify-initial hidden sm:block">
<button <button
className="text-xs font-bold text-gray-500 hover:underline" className="text-xs font-bold text-gray-500 hover:underline"
@ -116,7 +111,6 @@ export function FeedAnswerCommentGroup(props: {
Reply Reply
</button> </button>
</div> </div>
)}
</Col> </Col>
</Row> </Row>
<Col className="gap-3 pl-1"> <Col className="gap-3 pl-1">