From 20ab313c6c73e5b93d50b209702c096d84cd5e53 Mon Sep 17 00:00:00 2001 From: Sinclair Chen Date: Fri, 12 Aug 2022 12:10:45 -0700 Subject: [PATCH] Improve profile comments vis d --- web/components/comments-list.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/web/components/comments-list.tsx b/web/components/comments-list.tsx index de4ea67f..304a213f 100644 --- a/web/components/comments-list.tsx +++ b/web/components/comments-list.tsx @@ -27,20 +27,22 @@ export function UserCommentsList(props: { {Object.entries(commentsByContract).map(([contractId, comments]) => { const contract = contractsById[contractId] return ( -
+
{contract.question} - {comments.map((comment) => ( - - ))} + + {comments.map((comment) => ( + + ))} +
) })}