do not multiply delay of fill script action execution 🕴️ (#17049)

Co-authored-by: Miles Blackwood <milesblackwoodmusic@gmail.com>
This commit is contained in:
Jonathan Prusik 2025-10-28 09:36:33 -04:00 committed by GitHub
parent 8eef78960d
commit af061282c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -136,7 +136,7 @@ class InsertAutofillContentService implements InsertAutofillContentServiceInterf
setTimeout(() => {
this.autofillInsertActions[action]({ opid, value });
resolve();
}, delayActionsInMilliseconds * actionIndex),
}, delayActionsInMilliseconds),
);
};