Skip to content

Commit ec200fd

Browse files
author
Jeffrey Biles
committed
Fix overloaded variable in addMultiple
1 parent 9a060a8 commit ec200fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/composition/useEmailSelection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export const useEmailSelection = function(){
2222
emails.add(id);
2323
}
2424
}
25-
const addMultiple = (emails) => {
26-
emails.forEach(email => {
25+
const addMultiple = (newEmails) => {
26+
newEmails.forEach(email => {
2727
emails.add(email)
2828
})
2929
}

0 commit comments

Comments
 (0)