From 5ac77674ed00eac677b0a8b772b70c382dcacfaf Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Wed, 19 Jan 2022 03:16:22 -0500 Subject: [PATCH] Also show avatar url from contract feed --- web/components/contract-feed.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/web/components/contract-feed.tsx b/web/components/contract-feed.tsx index 33938587..9ef9d729 100644 --- a/web/components/contract-feed.tsx +++ b/web/components/contract-feed.tsx @@ -306,13 +306,19 @@ function FeedDescription(props: { contract: Contract }) { return ( <> -
+ {contract.creatorAvatarUrl ? ( + + ) : ( + // TODO: After 2022-03-01, can just assume that all contracts have an avatarUrl
-
+ )}