Skip to content

Commit

Permalink
fix(daffio): replace LetModule imports with LetDirective (#2728)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Jan 25, 2024
1 parent 312a91b commit 8ba65b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { RouterTestingModule } from '@angular/router/testing';
import { LetModule } from '@ngrx/component';
import { LetDirective } from '@ngrx/component';
import {
MockStore,
provideMockStore,
Expand Down Expand Up @@ -39,7 +39,7 @@ describe('DaffioDocsSidebarContainer', () => {

TestBed.configureTestingModule({
imports: [
LetModule,
LetDirective,
RouterTestingModule,
HttpClientTestingModule,
DaffioDocsPackagesListContainerModule,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { LetModule } from '@ngrx/component';
import { LetDirective } from '@ngrx/component';
import { DaffioDocsPackagesListContainerModule } from 'apps/daffio/src/app/guides/containers/packages-list/packages-list.module';

import { DaffioDocsSidebarContainer } from './docs-sidebar.component';
Expand All @@ -11,7 +11,7 @@ import { DaffioDocsSidebarContentComponentModule } from '../../components/docs-s
imports: [
CommonModule,
RouterModule,
LetModule,
LetDirective,

DaffioDocsPackagesListContainerModule,
DaffioDocsSidebarContentComponentModule,
Expand Down

0 comments on commit 8ba65b3

Please sign in to comment.