From 21abc93a04c84f0598b73cf4dfa82f560832d890 Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Mon, 2 Sep 2024 20:21:31 +0100 Subject: [PATCH] made assign job btn name same as what is in mobile app --- src/components/jobPopout/NewJobListPopout.jsx | 6 +++--- src/components/jobPopout/popoutcomponent/AssignToFamily.jsx | 2 +- src/components/jobPopout/popoutcomponent/AssignToGroup.jsx | 4 ++-- .../jobPopout/popoutcomponent/AssignToIndividual.jsx | 2 +- src/components/jobPopout/popoutcomponent/AssignToPublic.jsx | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/jobPopout/NewJobListPopout.jsx b/src/components/jobPopout/NewJobListPopout.jsx index 8e5f545..dc22701 100644 --- a/src/components/jobPopout/NewJobListPopout.jsx +++ b/src/components/jobPopout/NewJobListPopout.jsx @@ -344,11 +344,11 @@ function NewJobListPopout({ {selectedTab == 'family' ? 'Assign to family' : selectedTab == 'public' ? - 'Offer this job to public' + 'Place in Market' : selectedTab == 'individual' ? - 'Offer this job to individual' + 'Assign to individual' : selectedTab == 'group' ? - 'Offer this job to your Group' + 'Preferred List' : null } diff --git a/src/components/jobPopout/popoutcomponent/AssignToFamily.jsx b/src/components/jobPopout/popoutcomponent/AssignToFamily.jsx index c61fca0..361104d 100644 --- a/src/components/jobPopout/popoutcomponent/AssignToFamily.jsx +++ b/src/components/jobPopout/popoutcomponent/AssignToFamily.jsx @@ -48,7 +48,7 @@ export default function AssignToFamily({
diff --git a/src/components/jobPopout/popoutcomponent/AssignToIndividual.jsx b/src/components/jobPopout/popoutcomponent/AssignToIndividual.jsx index 26aaa0f..fda6405 100644 --- a/src/components/jobPopout/popoutcomponent/AssignToIndividual.jsx +++ b/src/components/jobPopout/popoutcomponent/AssignToIndividual.jsx @@ -53,7 +53,7 @@ export default function AssignToIndividual({
-- 2.34.1