Skip to content

Commit d6e4416

Browse files
committed
adjusting copy for better readability
1 parent 329e565 commit d6e4416

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

components/dashboard/src/onboarding/StepOrgInfo.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export const StepOrgInfo: FC<Props> = ({ user, onComplete }) => {
169169
<TextInputField
170170
value={jobRoleOther}
171171
onChange={setJobRoleOther}
172-
placeholder="Please specify"
172+
placeholder="Please share (optional)"
173173
hint={
174174
jobRole === JOB_ROLE_OTHER
175175
? "Please select the role that best describes the type of work you'll use Gitpod for"
@@ -212,7 +212,7 @@ export const StepOrgInfo: FC<Props> = ({ user, onComplete }) => {
212212
))}
213213
</div>
214214

215-
<InputField label="I'm signing up for Gitpod to..." />
215+
<InputField label="I'm signing up for Gitpod for..." />
216216
<div className="mt-4 ml-2 space-y-2">
217217
{signupGoalsOptions.map((o) => (
218218
<div key={o.value} className="flex space-x-2 justify-start items-center">
@@ -238,7 +238,11 @@ export const StepOrgInfo: FC<Props> = ({ user, onComplete }) => {
238238
</div>
239239

240240
{signupGoals.includes(SIGNUP_GOALS_OTHER) && (
241-
<TextInputField value={signupGoalsOther} placeholder="Please specify" onChange={setSignupGoalsOther} />
241+
<TextInputField
242+
value={signupGoalsOther}
243+
placeholder="Please share (optional)"
244+
onChange={setSignupGoalsOther}
245+
/>
242246
)}
243247
</OnboardingStep>
244248
);

components/dashboard/src/onboarding/exploration-reasons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
export const getExplorationReasons = () => {
88
return [
99
{ value: "explore-professional", label: "For work" },
10-
{ value: "explore-personal", label: "For personal projects, or open-source" },
10+
{ value: "explore-personal", label: "For personal projects or open-source" },
1111
{
1212
value: "replace-remote-dev",
13-
label: "To replace remote/containerized development (VDI, VM based, Docker Desktop,...)",
13+
label: "To replace remote/containerized development (VDI, VM, Docker Desktop)",
1414
},
1515
];
1616
};

components/dashboard/src/onboarding/job-roles.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export const JOB_ROLE_OTHER = "other";
99
export const getJobRoleOptions = () => {
1010
return [
1111
{ value: "", label: "Please select one" },
12-
{ value: "software-eng", label: "Software Engineer" },
12+
{ value: "software-eng", label: "Software Engineering" },
1313
{ value: "data", label: "Data / Analytics" },
14-
{ value: "academics", label: "Academic (Student, Researcher)" },
15-
{ value: "enabling", label: "Enabling team (Platform, Developer Experience)" },
16-
{ value: "team-lead", label: "Team / Function Lead" },
14+
{ value: "academics", label: "Academia (Student, Researcher)" },
15+
{ value: "enabling", label: "Platform or Developer Experience" },
16+
{ value: "team-lead", label: "A Team or Function Lead role" },
1717
{ value: "devrel", label: "DevRel" },
18-
{ value: "product-design", label: "Product (PM, Designer)" },
19-
{ value: JOB_ROLE_OTHER, label: "Other - please specify / prefer not to say" },
18+
{ value: "product-design", label: "Product" },
19+
{ value: JOB_ROLE_OTHER, label: "Other" },
2020
];
2121
};

components/dashboard/src/onboarding/signup-goals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export const getSignupGoalsOptions = () => {
1212
{ value: "onboarding", label: "Faster onboarding" },
1313
{ value: "powerful-resources", label: "More powerful dev resources" },
1414
{ value: "security", label: "More secure dev process" },
15-
{ value: SIGNUP_GOALS_OTHER, label: "Other - please specify / prefer not to say" },
15+
{ value: SIGNUP_GOALS_OTHER, label: "Other" },
1616
];
1717
};

0 commit comments

Comments
 (0)