diff --git a/apps/web/src/app/auth/trial-initiation/trial-initiation.module.ts b/apps/web/src/app/auth/trial-initiation/trial-initiation.module.ts index 222ad94923..426ce3e2e7 100644 --- a/apps/web/src/app/auth/trial-initiation/trial-initiation.module.ts +++ b/apps/web/src/app/auth/trial-initiation/trial-initiation.module.ts @@ -6,9 +6,10 @@ import { FormFieldModule } from "@bitwarden/components"; import { OrganizationCreateModule } from "../../admin-console/organizations/create/organization-create.module"; import { RegisterFormModule } from "../../auth/register-form/register-form.module"; +import { PaymentComponent, TaxInfoComponent } from "../../billing"; import { BillingComponent } from "../../billing/accounts/trial-initiation/billing.component"; import { EnvironmentSelectorModule } from "../../components/environment-selector/environment-selector.module"; -import { LooseComponentsModule, SharedModule } from "../../shared"; +import { SharedModule } from "../../shared"; import { ConfirmationDetailsComponent } from "./confirmation-details.component"; import { AbmEnterpriseContentComponent } from "./content/abm-enterprise-content.component"; @@ -37,8 +38,9 @@ import { VerticalStepperModule } from "./vertical-stepper/vertical-stepper.modul FormFieldModule, RegisterFormModule, OrganizationCreateModule, - LooseComponentsModule, EnvironmentSelectorModule, + PaymentComponent, + TaxInfoComponent, ], declarations: [ TrialInitiationComponent, diff --git a/apps/web/src/app/shared/loose-components.module.ts b/apps/web/src/app/shared/loose-components.module.ts index 86c0da0d90..6efaf3653d 100644 --- a/apps/web/src/app/shared/loose-components.module.ts +++ b/apps/web/src/app/shared/loose-components.module.ts @@ -51,7 +51,6 @@ import { UpdatePasswordComponent } from "../auth/update-password.component"; import { UpdateTempPasswordComponent } from "../auth/update-temp-password.component"; import { VerifyEmailTokenComponent } from "../auth/verify-email-token.component"; import { VerifyRecoverDeleteComponent } from "../auth/verify-recover-delete.component"; -import { BillingSharedModule } from "../billing/shared"; import { DynamicAvatarComponent } from "../components/dynamic-avatar.component"; import { SelectableAvatarComponent } from "../components/selectable-avatar.component"; import { FooterComponent } from "../layouts/footer.component"; @@ -107,11 +106,6 @@ import { SharedModule } from "./shared.module"; EnvironmentSelectorModule, AccountFingerprintComponent, PasswordCalloutComponent, - - // Temporary export to be removed in AC-1453 - // Import PaymentComponent and TaxInfoComponent directly into TrialIniationComponent - // and remove BillingSharedModule here - BillingSharedModule, ], declarations: [ AcceptEmergencyComponent, @@ -282,11 +276,6 @@ import { SharedModule } from "./shared.module"; VerifyEmailTokenComponent, VerifyRecoverDeleteComponent, LowKdfComponent, - - // Temporary export to be removed in AC-1453 - // Import PaymentComponent and TaxInfoComponent directly into TrialIniationComponent - // and remove BillingSharedModule here - BillingSharedModule, ], }) export class LooseComponentsModule {}