From af061282c6679c4eb24ffd5dc1e2cc41cebd7927 Mon Sep 17 00:00:00 2001 From: Jonathan Prusik Date: Tue, 28 Oct 2025 09:36:33 -0400 Subject: [PATCH] =?UTF-8?q?do=20not=20multiply=20delay=20of=20fill=20scrip?= =?UTF-8?q?t=20action=20execution=20=F0=9F=95=B4=EF=B8=8F=20(#17049)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Miles Blackwood --- .../src/autofill/services/insert-autofill-content.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/autofill/services/insert-autofill-content.service.ts b/apps/browser/src/autofill/services/insert-autofill-content.service.ts index 9ddbcdc005..a809dadf8e 100644 --- a/apps/browser/src/autofill/services/insert-autofill-content.service.ts +++ b/apps/browser/src/autofill/services/insert-autofill-content.service.ts @@ -136,7 +136,7 @@ class InsertAutofillContentService implements InsertAutofillContentServiceInterf setTimeout(() => { this.autofillInsertActions[action]({ opid, value }); resolve(); - }, delayActionsInMilliseconds * actionIndex), + }, delayActionsInMilliseconds), ); };