We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8485af0 commit a62c494Copy full SHA for a62c494
1 file changed
lib/input-handler.ts
@@ -774,8 +774,7 @@ export class InputHandler {
774
}
775
const now = this.getNow();
776
const isDuplicate =
777
- now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS &&
778
- this.lastPasteData === data;
+ now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS && this.lastPasteData === data;
779
if (isDuplicate) {
780
this.lastPasteData = null;
781
this.lastPasteSource = null;
0 commit comments