BugFixing Navigation
diff --git a/src/app/pages/company/company.module.ts b/src/app/pages/company/company.module.ts
index 7ef5f0a..7dfdab4 100644
--- a/src/app/pages/company/company.module.ts
+++ b/src/app/pages/company/company.module.ts
@@ -50,6 +50,10 @@
 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';
 
 @NgModule({
   imports: [
@@ -66,7 +70,7 @@
     AgGridModule.withComponents([SetFilterComponent]),
     ContainersModule,
     CompanyRoutingModule,
-    EffectsModule.forFeature([CompanyEffect, ContactPersonEffect]),
+    EffectsModule.forFeature([SalutationsEffects, CommunicationTypesEffects, PersonTypesEffects, AddressTypesEffects, CompanyEffect, ContactPersonEffect]),
   ],
   declarations: [
     CompanyDetailsComponent,