Skip to content

Commit 3a43f8c

Browse files
committed
removed redeclarion of a variable
1 parent ea61b32 commit 3a43f8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GlobalInputMessageConnector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ export default class GlobalInputMessageConnector {
666666
});
667667
}
668668
else if (typeof data.index !== 'undefined' && data.index < globalInputdata.length) {
669-
const globalInputdata = globalInputdata.slice(0);
669+
globalInputdata = globalInputdata.slice(0);
670670
globalInputdata[data.index].value = data.value;
671671
}
672672
else {

0 commit comments

Comments
 (0)