diff --git a/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift b/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift index 8c2aa15550f..5c8756ec9d5 100644 --- a/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift +++ b/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift @@ -177,10 +177,10 @@ class CredentialProviderViewController: ASCredentialProviderViewController { } // Schedule the timeout - DispatchQueue.main.asyncAfter(deadline: .now() + 20, execute: timeoutTimer) + DispatchQueue.main.asyncAfter(deadline: .now() + 90, execute: timeoutTimer) // Create a timer to show UI after 10 seconds - DispatchQueue.main.asyncAfter(deadline: .now() + 10) { [weak self] in + DispatchQueue.main.asyncAfter(deadline: .now() + 90) { [weak self] in guard let self = self else { return } // Configure and show UI elements for manual cancellation self.configureTimeoutUI()