From 5931857bc586c5ccf3f07a19fda5dd69d5725741 Mon Sep 17 00:00:00 2001 From: Stephon Brown Date: Wed, 4 Feb 2026 19:12:08 -0500 Subject: [PATCH] docs(billing): refine JSDoc for PremiumOrgUpgradeDialogParams --- .../premium-org-upgrade-dialog.component.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/billing/individual/upgrade/premium-org-upgrade-dialog/premium-org-upgrade-dialog.component.ts b/apps/web/src/app/billing/individual/upgrade/premium-org-upgrade-dialog/premium-org-upgrade-dialog.component.ts index 84a93a27c9e..88f7a37c74a 100644 --- a/apps/web/src/app/billing/individual/upgrade/premium-org-upgrade-dialog/premium-org-upgrade-dialog.component.ts +++ b/apps/web/src/app/billing/individual/upgrade/premium-org-upgrade-dialog/premium-org-upgrade-dialog.component.ts @@ -62,10 +62,8 @@ export type PremiumOrgUpgradeDialogResult = { * In order to open the dialog to a specific step, you must provide the `initialStep` parameter and a `selectedPlan` if the step is `Payment`. * * @property {Account} account - The user account information. - * @property {PremiumOrgUpgradeDialogStep | null} PersonalSubscriptionPricingTierId | null} [selectedPlan] - Pre-selected subscription plan (Families, Teams, or Enterprise)y. - * @property {BusinessSubscriptionPricingTierId | null} [selectedPlan] - Pre-selected subscription plan, if any. - * @property {string | null} [dialogTitleMessageOverride] - Optional custom i18n key to override the default dialog title. - * @property {boolean} [hideContinueWithoutUpgradingButton] - Whether to hide the "Continue without upgrading" button. + * @property {PremiumOrgUpgradeDialogStep | null} [initialStep] - The initial step to open the dialog to, if any. + * @property {BusinessSubscriptionPricingTierId | PersonalSubscriptionPricingTierId | null} [selectedPlan] - Pre-selected subscription plan, if any. * @property {boolean} [redirectOnCompletion] - Whether to redirect after successful upgrade to organization vault. */ export type PremiumOrgUpgradeDialogParams = {