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 + + )}
  • ); })}