From 51fca8ef6ed71cca8802ddb0afeff7653321ca48 Mon Sep 17 00:00:00 2001 From: JaredScar Date: Tue, 21 Apr 2026 17:01:17 -0400 Subject: [PATCH] Enhance MainBackground class by adding authService, accountService, and configService dependencies to the constructor. This update improves service integration for background operations. --- apps/browser/src/background/main.background.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/browser/src/background/main.background.ts b/apps/browser/src/background/main.background.ts index a07aae9822c..33714277479 100644 --- a/apps/browser/src/background/main.background.ts +++ b/apps/browser/src/background/main.background.ts @@ -884,6 +884,9 @@ export default class MainBackground { this.organizationService, this.organizationUserApiService, this.policyService, + this.authService, + this.accountService, + this.configService, ); const sdkClientFactory = flagEnabled("sdk")