Skip to content

Commit 6a5444a

Browse files
authored
Merge pull request #139 from CodeYourFuture/feature-765-add-iam-not-sure-option-to-the-volunteer-teams-question
Add "I am not sure" option in the drop-down menu in the volunteer form if a new volunteer not sure which team to join
2 parents 0a8af40 + 38c605c commit 6a5444a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/forms/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Forms extends Component {
2525
const response = await axios.get(`${domain()}/teams`)
2626
const teamData = response.data.teams
2727
teamData.sort((a, b) => a.name.localeCompare(b.name))
28-
28+
teamData.push({ name: 'I am not sure' })
2929
this.setState({ teamOptions: teamData })
3030
} catch (err) {
3131
return this.setState({

0 commit comments

Comments
 (0)