Skip to content

Commit 40366f5

Browse files
committed
remove parens
1 parent a47178c commit 40366f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/55 - Face Detection Censorship/pixelated-face-FINISHED.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function handleOption(event) {
2121
const { value, name } = event.currentTarget;
2222
options[name] = parseFloat(value);
2323
}
24-
optionsInputs.forEach((input) => input.addEventListener('input', handleOption));
24+
optionsInputs.forEach(input => input.addEventListener('input', handleOption));
2525

2626
// Write a fucntion that will populate the users video
2727
async function populateVideo() {

0 commit comments

Comments
 (0)