diff --git a/apps/back-office/components/footer-buttons/footer-buttons.tsx b/apps/back-office/components/footer-buttons/footer-buttons.tsx index 08448bc59..ba5a845d5 100644 --- a/apps/back-office/components/footer-buttons/footer-buttons.tsx +++ b/apps/back-office/components/footer-buttons/footer-buttons.tsx @@ -92,7 +92,7 @@ export function FooterButtons(props) { Are you sure you want to reject?
- Clicking reject will remove the member from the list. + Clicking reject will remove the people from the list.
diff --git a/apps/back-office/components/member-request-list.tsx b/apps/back-office/components/member-request-list.tsx index 204341870..a4b4cd178 100644 --- a/apps/back-office/components/member-request-list.tsx +++ b/apps/back-office/components/member-request-list.tsx @@ -31,7 +31,7 @@ const MemberRequestList = (props: any) => { }; const [listData, unVerifiedMembers] = await Promise.all([ api.get(`${API_ROUTE.PARTICIPANTS_REQUEST}?status=PENDING`, config), - api.get(`${API_ROUTE.MEMBERS}?isVerified=false&pagination=false`, config), + api.get(`${API_ROUTE.MEMBERS}?isVerified=false&pagination=false&orderBy=-createdAt`, config), ]); const pendingMembers = listData.data.filter((item) => item.participantType === ENROLLMENT_TYPE.MEMBER); diff --git a/apps/back-office/components/member-table/member-table.tsx b/apps/back-office/components/member-table/member-table.tsx index c664310b5..3648ce2e3 100644 --- a/apps/back-office/components/member-table/member-table.tsx +++ b/apps/back-office/components/member-table/member-table.tsx @@ -393,7 +393,7 @@ const MemberTable = (props: any) => { Are you sure you want to reject?
- Clicking reject will remove the member from the list. + Clicking reject will remove the people from the list.
diff --git a/apps/back-office/components/members/memberskillform.tsx b/apps/back-office/components/members/memberskillform.tsx index 614a88480..9d89af321 100644 --- a/apps/back-office/components/members/memberskillform.tsx +++ b/apps/back-office/components/members/memberskillform.tsx @@ -83,7 +83,7 @@ export default function AddMemberSkillForm(props) {
- Sharing your skills help other network members & teams connect with + Sharing your skills help other network people & teams connect with you. @@ -115,7 +115,7 @@ export default function AddMemberSkillForm(props) { Enabling this implies you are open to collaborate on shared ideas - & projects with other members. This is one way to join forces & + & projects with other people. This is one way to join forces & reach a common goal. diff --git a/apps/back-office/components/teams/teamstepone.tsx b/apps/back-office/components/teams/teamstepone.tsx index 2fb076660..cf8e8105e 100644 --- a/apps/back-office/components/teams/teamstepone.tsx +++ b/apps/back-office/components/teams/teamstepone.tsx @@ -160,7 +160,7 @@ export default function TeamStepOne(props) { If your team offers group office hours or open meetings that are - open to the public, please share the link so PLN members can join + open to the public, please share the link so PLN people can join and learn more. diff --git a/apps/back-office/utils/constants.ts b/apps/back-office/utils/constants.ts index 91ed19d14..43a800a5b 100644 --- a/apps/back-office/utils/constants.ts +++ b/apps/back-office/utils/constants.ts @@ -10,7 +10,7 @@ const APP_CONSTANTS = { APPROVED_FLAG: 'APPROVED', REJECTED_FLAG: 'REJECTED', CLOSED_FLAG: 'CLOSED', - MEMBER_LABEL: 'Members', + MEMBER_LABEL: 'People', TEAMS_LABEL: 'Teams', NO_DATA_AVAILABLE_LABEL: 'No data available', VIEW_CLOSED_REQUEST_LABEL: 'View closed requests',