Skip to content

Commit 38c605c

Browse files
committed
Remove _id as not needed
1 parent 666086d commit 38c605c

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-
teamData.push({ _id: '65035350fdbf584dc37a3383', name: 'I am not sure' })
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)