diff --git a/components/dashboard/src/onboarding/StepOrgInfo.tsx b/components/dashboard/src/onboarding/StepOrgInfo.tsx index f9922424c5bcec..602c381aa1d6f9 100644 --- a/components/dashboard/src/onboarding/StepOrgInfo.tsx +++ b/components/dashboard/src/onboarding/StepOrgInfo.tsx @@ -150,11 +150,6 @@ export const StepOrgInfo: FC = ({ user, onComplete }) => { } setJobRole(val); }} - hint={ - jobRole !== JOB_ROLE_OTHER - ? "Please select the role that best describes the type of work you'll use Gitpod for" - : "" - } error={jobRoleError.message} onBlur={jobRoleError.onBlur} > @@ -166,16 +161,7 @@ export const StepOrgInfo: FC = ({ user, onComplete }) => { {jobRole === JOB_ROLE_OTHER && ( - + )} = ({ user, onComplete }) => { ))} - + {signupGoalsOptions.map((o) => ( = ({ user, onComplete }) => { {signupGoals.includes(SIGNUP_GOALS_OTHER) && ( - + )} ); diff --git a/components/dashboard/src/onboarding/exploration-reasons.ts b/components/dashboard/src/onboarding/exploration-reasons.ts index ed315edcf8c19d..3858df1aab34d2 100644 --- a/components/dashboard/src/onboarding/exploration-reasons.ts +++ b/components/dashboard/src/onboarding/exploration-reasons.ts @@ -7,10 +7,10 @@ export const getExplorationReasons = () => { return [ { value: "explore-professional", label: "For work" }, - { value: "explore-personal", label: "For personal projects, or open-source" }, + { value: "explore-personal", label: "For personal projects or open-source" }, { value: "replace-remote-dev", - label: "To replace remote/containerized development (VDI, VM based, Docker Desktop,...)", + label: "To replace remote/containerized development (VDI, VM, Docker Desktop)", }, ]; }; diff --git a/components/dashboard/src/onboarding/job-roles.ts b/components/dashboard/src/onboarding/job-roles.ts index d3378b3494b5cc..0f3e2f1f883399 100644 --- a/components/dashboard/src/onboarding/job-roles.ts +++ b/components/dashboard/src/onboarding/job-roles.ts @@ -9,13 +9,13 @@ export const JOB_ROLE_OTHER = "other"; export const getJobRoleOptions = () => { return [ { value: "", label: "Please select one" }, - { value: "software-eng", label: "Software Engineer" }, + { value: "software-eng", label: "Software Engineering" }, { value: "data", label: "Data / Analytics" }, - { value: "academics", label: "Academic (Student, Researcher)" }, - { value: "enabling", label: "Enabling team (Platform, Developer Experience)" }, - { value: "team-lead", label: "Team / Function Lead" }, + { value: "academics", label: "Academia (Student, Researcher)" }, + { value: "enabling", label: "Platform or Developer Experience" }, + { value: "team-lead", label: "A Team Lead or Function Lead role" }, { value: "devrel", label: "DevRel" }, - { value: "product-design", label: "Product (PM, Designer)" }, - { value: JOB_ROLE_OTHER, label: "Other - please specify / prefer not to say" }, + { value: "product-design", label: "Product" }, + { value: JOB_ROLE_OTHER, label: "Other" }, ]; }; diff --git a/components/dashboard/src/onboarding/signup-goals.ts b/components/dashboard/src/onboarding/signup-goals.ts index 2904ec5f35f5d5..497b352040f38a 100644 --- a/components/dashboard/src/onboarding/signup-goals.ts +++ b/components/dashboard/src/onboarding/signup-goals.ts @@ -12,6 +12,6 @@ export const getSignupGoalsOptions = () => { { value: "onboarding", label: "Faster onboarding" }, { value: "powerful-resources", label: "More powerful dev resources" }, { value: "security", label: "More secure dev process" }, - { value: SIGNUP_GOALS_OTHER, label: "Other - please specify / prefer not to say" }, + { value: SIGNUP_GOALS_OTHER, label: "Other" }, ]; };