Removed references of DigiNgLinkInternalModule

This commit is contained in:
Erik Tiekstra
2021-11-17 11:13:57 +01:00
parent 8f05343ef2
commit 5a281bed25
2 changed files with 2 additions and 5 deletions
@@ -1,4 +1,3 @@
import { DigiNgLinkInternalModule } from '@af/digi-ng/_link/link-internal';
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { AnchorLinkModule } from '@msfa-directives/anchor-link.module';
@@ -7,7 +6,7 @@ import { ErrorListComponent } from './error-list.component';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [ErrorListComponent],
imports: [CommonModule, AnchorLinkModule, DigiNgLinkInternalModule],
imports: [CommonModule, AnchorLinkModule],
exports: [ErrorListComponent],
})
export class ErrorListModule {}