Skip to content

Commit

Permalink
Merge pull request #74 from ethereum/rollupPatch
Browse files Browse the repository at this point in the history
Rollup Grants Form patch
  • Loading branch information
samajammin authored Mar 8, 2021
2 parents ab89c4e + 23f448b commit 18c373d
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions src/components/RollupGrantsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ countryOptions.unshift({

const PROJECT_CATEGORIES = [
"Adoption",
"Community & Education",
"Devex, Tooling & Testing",
"Community and Education",
"Devex, Tooling and Testing",
"Infrastructure",
"Interoperability",
"New Rollups",
Expand Down Expand Up @@ -381,7 +381,7 @@ const RollupGrantsForm = props => {
<Label>
<span>Requested Grant Amount</span>
<div>
<small>Ex: USD 20,000.00</small>
<small>Ex: USD 4,000</small>
</div>
<Input
type="text"
Expand Down Expand Up @@ -411,27 +411,36 @@ const RollupGrantsForm = props => {
</Label>
)}
<Label>
<span>Twitter Handle</span>
<span>Twitter Username</span>
<div>
<small>Ex: @ef_esp</small>
</div>
<Input
type="text"
name="twitter"
value={formState.twitter}
onChange={handleInputChange}
maxLength="150"
maxLength="15"
/>
</Label>
<Label>
<span>GitHub Username</span>
<div>
<small>Ex: @github_username</small>
</div>
<Input
type="text"
name="github"
value={formState.github}
onChange={handleInputChange}
maxLength="150"
maxLength="40"
/>
</Label>
<Label>
<span>LinkedIn Profile</span>
<span>LinkedIn Profile URL</span>
<div>
<small>Ex: https://www.linkedin.com/in/profilename</small>
</div>
<Input
type="text"
name="linkedin"
Expand Down

0 comments on commit 18c373d

Please sign in to comment.