diff --git a/apps/browser/src/popup/services/services.module.ts b/apps/browser/src/popup/services/services.module.ts index 577b958184b..bcaf8417c95 100644 --- a/apps/browser/src/popup/services/services.module.ts +++ b/apps/browser/src/popup/services/services.module.ts @@ -147,6 +147,7 @@ function createLocalBgService() { return localBgService; } +/** @deprecated This method needs to be removed as part of MV3 conversion. Please do not add more and actively try to remove usages */ function getBgService(service: keyof MainBackground) { return (): T => { return mainBackground ? (mainBackground[service] as any as T) : null;