From 5c8b9230d9472f67276274f79d74e895581c6eb3 Mon Sep 17 00:00:00 2001 From: Sunny Liu Date: Wed, 17 Apr 2019 12:03:38 +0800 Subject: [PATCH] fix(module:tree): duplicated module import (#3286) --- components/tree/nz-tree.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tree/nz-tree.module.ts b/components/tree/nz-tree.module.ts index 91cceb5970b..61e9c4dab66 100644 --- a/components/tree/nz-tree.module.ts +++ b/components/tree/nz-tree.module.ts @@ -7,7 +7,7 @@ import { NzTreeNodeComponent } from './nz-tree-node.component'; import { NzTreeComponent } from './nz-tree.component'; @NgModule({ - imports: [CommonModule, NzAddOnModule, NzIconModule, NzNoAnimationModule, NzAddOnModule], + imports: [CommonModule, NzAddOnModule, NzIconModule, NzNoAnimationModule], declarations: [NzTreeComponent, NzTreeNodeComponent], exports: [NzTreeComponent, NzTreeNodeComponent] })