Fix overloaded variable in addMultiple

This commit is contained in:
Jeffrey Biles
2020-04-22 20:32:33 -07:00
parent 9a060a8343
commit ec200fd57a

View File

@@ -22,8 +22,8 @@ export const useEmailSelection = function(){
emails.add(id);
}
}
const addMultiple = (emails) => {
emails.forEach(email => {
const addMultiple = (newEmails) => {
newEmails.forEach(email => {
emails.add(email)
})
}