From 79aa43f2a653fd33c3622bfb8f62c9d8fb7100ce Mon Sep 17 00:00:00 2001 From: Stephon Brown Date: Wed, 4 Feb 2026 15:28:49 -0500 Subject: [PATCH] refactor(billing): Remove obsolete unified upgrade change --- .../upgrade/services/unified-upgrade-prompt.service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/web/src/app/billing/individual/upgrade/services/unified-upgrade-prompt.service.ts b/apps/web/src/app/billing/individual/upgrade/services/unified-upgrade-prompt.service.ts index 82cfa700266..f5a32483a4d 100644 --- a/apps/web/src/app/billing/individual/upgrade/services/unified-upgrade-prompt.service.ts +++ b/apps/web/src/app/billing/individual/upgrade/services/unified-upgrade-prompt.service.ts @@ -85,11 +85,6 @@ export class UnifiedUpgradePromptService { * @returns A promise that resolves to the dialog result if shown, or null if not shown */ async displayUpgradePromptConditionally(): Promise { - // Prevent opening multiple dialogs if one is already open - if (this.unifiedUpgradeDialogRef) { - return null; - } - const shouldShow = await firstValueFrom(this.shouldShowPrompt$); if (shouldShow) {