Skip to content

Commit b386c05

Browse files
committed
Use the tier name as the value of the option instead of description
1 parent d018a7e commit b386c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/web/src/onboarding/OnboardingFormComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export default function OnboardingFormComponent(props) {
8686
const options = tiers.map((tier) => {
8787
return (
8888
<option value={tier.name} key={tier.id}>
89-
{tier.description}
89+
{tier.name}
9090
</option>
9191
)
9292
})

0 commit comments

Comments
 (0)