BugFixing Navigation
diff --git a/src/app/pages/company/company.module.ts b/src/app/pages/company/company.module.ts index 7dfdab4..c7bae8e 100644 --- a/src/app/pages/company/company.module.ts +++ b/src/app/pages/company/company.module.ts
@@ -50,10 +50,14 @@ import { AddressTypesSandbox } from '../admin/address-types/address-types.sandbox'; import { SalutationsSandbox } from '../admin/salutations/salutations.sandbox'; import { PersonTypesSandbox } from '../admin/person-types/person-types.sandbox'; -import { SalutationsEffects } from '@app/shared/store/effects/admin/salutations.effect'; import { CommunicationTypesEffects } from '@app/shared/store/effects/admin/communication-types.effect'; import { PersonTypesEffects } from '@app/shared/store/effects/admin/person-types.effect'; import { AddressTypesEffects } from '@app/shared/store/effects/admin/address-types.effect'; +import { SalutationsEffects } from '@app/shared/store/effects/admin/salutations.effect'; +import { CommunicationTypesApiClient } from '../admin/communication-types/communication-types-api-client'; +import { PersonTypesApiClient } from '../admin/person-types/person-types-api-client'; +import { AddressTypesApiClient } from '../admin/address-types/address-types-api-client'; +import { SalutationsApiClient } from '../admin/salutations/salutations-api-client'; @NgModule({ imports: [ @@ -70,7 +74,7 @@ AgGridModule.withComponents([SetFilterComponent]), ContainersModule, CompanyRoutingModule, - EffectsModule.forFeature([SalutationsEffects, CommunicationTypesEffects, PersonTypesEffects, AddressTypesEffects, CompanyEffect, ContactPersonEffect]), + EffectsModule.forFeature([CompanyEffect, ContactPersonEffect, CommunicationTypesEffects, PersonTypesEffects, AddressTypesEffects, SalutationsEffects]), ], declarations: [ CompanyDetailsComponent, @@ -98,6 +102,10 @@ ContactPersonDetailsResolver, SalutationsSandbox, PersonTypesSandbox, + CommunicationTypesApiClient, + PersonTypesApiClient, + AddressTypesApiClient, + SalutationsApiClient, ], }) export class CompanyModule {}