diff --git a/app/author/[id]/components/AuthorProfile.tsx b/app/author/[id]/components/AuthorProfile.tsx index a68a5efd..b8a4d2b1 100644 --- a/app/author/[id]/components/AuthorProfile.tsx +++ b/app/author/[id]/components/AuthorProfile.tsx @@ -184,7 +184,14 @@ const AuthorProfile: React.FC = ({ author, refetchAuthorInfo icon={faBirthdayCake} className="h-5 w-5 self-start text-[#6B7280]" /> - Member for {specificTimeSince(author.createdDate)} + + {(() => { + const memberDuration = specificTimeSince(author.createdDate); + return memberDuration === 'just joined' + ? `Member ${memberDuration}` + : `Member for ${memberDuration}`; + })()} + )}