Skip to content

Commit 3f6a71a

Browse files
committed
chore: fix formatting
1 parent 1622678 commit 3f6a71a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/input-handler.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,7 @@ export class InputHandler {
782782
}
783783
const now = this.getNow();
784784
const isDuplicate =
785-
now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS &&
786-
this.lastPasteData === data;
785+
now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS && this.lastPasteData === data;
787786
if (isDuplicate) {
788787
this.lastPasteData = null;
789788
this.lastPasteSource = null;

0 commit comments

Comments
 (0)