1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 23:13:36 +00:00

widen the backoff threshold

This commit is contained in:
Jonathan Prusik
2025-09-26 13:26:57 -04:00
parent 50b9bb4da6
commit eb57b4f658

View File

@@ -22,7 +22,7 @@ import {
import { AutofillInlineMenuButtonIframe } from "../iframe-content/autofill-inline-menu-button-iframe";
import { AutofillInlineMenuListIframe } from "../iframe-content/autofill-inline-menu-list-iframe";
const TopLayerRefreshBackoffThresholds = { countLimit: 5, timeSpanLimit: 3000 };
const TopLayerRefreshBackoffThresholds = { countLimit: 5, timeSpanLimit: 5000 };
export class AutofillInlineMenuContentService implements AutofillInlineMenuContentServiceInterface {
private readonly sendExtensionMessage = sendExtensionMessage;