fix(*): remove unnecessary code from last commit

This commit is contained in:
Ben Gotow 2015-03-10 12:11:55 -07:00
parent 46a6e229eb
commit 6af864e3bd

View file

@ -89,13 +89,6 @@ ParticipantsTextField = React.createClass
false
@props.change(updates)
_removeOne: (participant) ->
field = @props.field
updates = {}
updates[field] = _.reject @props.participants[field], (p) ->
p.email is participant.email
@props.change(updates)
_add: (values) ->
values = _.compact _.map values, (value) ->
if value instanceof Contact