Skip to content

Commit 7853366

Browse files
committed
adjusting copy for better readability
1 parent afd38dc commit 7853366

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"
@@ -205,7 +205,7 @@ export const StepOrgInfo: FC<Props> = ({ user, onComplete }) => {
205205
))}
206206
</CheckboxInputField>
207207

208-
<CheckboxInputField label="I'm signing up for Gitpod to...">
208+
<CheckboxInputField label="I'm signing up for Gitpod for...">
209209
{signupGoalsOptions.map((o) => (
210210
<CheckboxInput
211211
key={o.value}
@@ -224,7 +224,11 @@ export const StepOrgInfo: FC<Props> = ({ user, onComplete }) => {
224224
</CheckboxInputField>
225225

226226
{signupGoals.includes(SIGNUP_GOALS_OTHER) && (
227-
<TextInputField value={signupGoalsOther} placeholder="Please specify" onChange={setSignupGoalsOther} />
227+
<TextInputField
228+
value={signupGoalsOther}
229+
placeholder="Please share (optional)"
230+
onChange={setSignupGoalsOther}
231+
/>
228232
)}
229233
</OnboardingStep>
230234
);

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)