1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

refactor(billing): Remove obsolete unified upgrade change

This commit is contained in:
Stephon Brown
2026-02-04 15:28:49 -05:00
parent bc5e3c4265
commit 79aa43f2a6

View File

@@ -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<UnifiedUpgradeDialogResult | null> {
// Prevent opening multiple dialogs if one is already open
if (this.unifiedUpgradeDialogRef) {
return null;
}
const shouldShow = await firstValueFrom(this.shouldShowPrompt$);
if (shouldShow) {