Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Mar 25, 2024
1 parent 663550f commit d6fff47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ import { OnboardingWelcomeComponent } from './create-new-project/onboarding-welc
import { HomeNewsFeedModalComponent } from './home-components/home-news-feed/home-news-feed-modal/home-news-feed-modal.component';
import { AutomationsComponent } from './automations/automations.component';
import { MatAutocompleteModule } from '@angular/material/autocomplete';
import { HomeCdsComponent } from './home-components/home-cds/home-cds.component';
// import { HomeCdsComponent } from './home-components/home-cds/home-cds.component'; // now lazy
import { AutomationStaticComponent } from './static-pages/automation-static/automation-static.component';
// import { KbModalComponent } from './knowledge-bases/kb-modal/kb-modal.component';
// import { KbAlertComponent } from './knowledge-bases/kb-alert/kb-alert.component';
Expand Down Expand Up @@ -691,7 +691,7 @@ const appInitializerFn = (appConfig: AppConfigService, brandService: BrandServic
OnboardingWelcomeComponent,
HomeNewsFeedModalComponent,
AutomationsComponent,
HomeCdsComponent,
// HomeCdsComponent, // now lazy
AutomationStaticComponent,
// KbModalComponent,
// KbAlertComponent,
Expand Down
4 changes: 3 additions & 1 deletion src/app/home/home.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { HomeWhatsappAccountWizardModalComponent } from 'app/home-components/hom
import { HomeCustomizeWidgetComponent } from 'app/home-components/home-customize-widget/home-customize-widget.component';
import { HomeCreateTeammateComponent } from 'app/home-components/home-create-teammate/home-create-teammate.component';
import { HomeKbComponent } from 'app/home-components/home-kb/home-kb.component';
import { HomeCdsComponent } from 'app/home-components/home-cds/home-cds.component';
const routes: Routes = [
{ path: "", component: HomeComponent},
];
Expand All @@ -36,7 +37,8 @@ const routes: Routes = [
HomeWhatsappAccountWizardModalComponent,
HomeCustomizeWidgetComponent,
HomeCreateTeammateComponent,
HomeKbComponent
HomeKbComponent,
HomeCdsComponent
],
imports: [
RouterModule.forChild(routes),
Expand Down

0 comments on commit d6fff47

Please sign in to comment.