Skip to content

Commit a62c494

Browse files
committed
chore: fix formatting
1 parent 8485af0 commit a62c494

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/input-handler.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,8 +774,7 @@ export class InputHandler {
774774
}
775775
const now = this.getNow();
776776
const isDuplicate =
777-
now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS &&
778-
this.lastPasteData === data;
777+
now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS && this.lastPasteData === data;
779778
if (isDuplicate) {
780779
this.lastPasteData = null;
781780
this.lastPasteSource = null;

0 commit comments

Comments
 (0)