From 0979a4c478d9b6d89ea6ca0f97ecd8d99faa7746 Mon Sep 17 00:00:00 2001 From: anc95 <1481988258@qq.com> Date: Mon, 13 Mar 2023 10:22:51 +0800 Subject: [PATCH] chore: time out --- src/content/utils/selection/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/utils/selection/index.ts b/src/content/utils/selection/index.ts index 80aa3c4..018b9ad 100644 --- a/src/content/utils/selection/index.ts +++ b/src/content/utils/selection/index.ts @@ -83,7 +83,7 @@ export class SelectionManager { setTimeout(() => { document.execCommand('paste'); this.textPasted = true; - }); + }, 100); } } }