From b4f718b6258951df0d5773e4fc8db1b538f5b0ff Mon Sep 17 00:00:00 2001 From: rustlab1 <58003304+rustlab1@users.noreply.github.com> Date: Mon, 10 Nov 2025 15:47:55 -0800 Subject: [PATCH] Update AuthorProfile.tsx --- app/author/[id]/components/AuthorProfile.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/author/[id]/components/AuthorProfile.tsx b/app/author/[id]/components/AuthorProfile.tsx index a68a5efd8..b8a4d2b19 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}`; + })()} + )}