Skip to content

Commit 666086d

Browse files
committed
Add I-am-not-sure option only the UI after the teams data is received
1 parent 0a8af40 commit 666086d

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({ _id: '65035350fdbf584dc37a3383', name: 'I am not sure' })
2929
this.setState({ teamOptions: teamData })
3030
} catch (err) {
3131
return this.setState({

0 commit comments

Comments
 (0)