From a70edaf09896a629f83e2dbf2517adfc7b3b0b7d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 5 Nov 2025 06:50:49 +0000 Subject: [PATCH] completionId: cgen-836084d94b8d42aab43e78d56da7f759 cgen-836084d94b8d42aab43e78d56da7f759 --- client/pages/Community.tsx | 39 +++++++++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index 0dd0e699..71680aa9 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -1981,18 +1981,47 @@ export default function Community() { {newMemberSteps.map((step) => { const Icon = step.icon; return ( -
  • -
    - +
  • +
    + {step.completed ? ( + + ) : ( + + )}
    -
    -

    +

    +

    {step.title}

    {step.description}

    + {!step.completed && ( + + )} + {step.completed && ( + + Done + + )}
  • ); })}