fix(router): fix a typing issue

Closes #5518
This commit is contained in:
Brian Ford 2015-11-30 16:03:46 -08:00
parent 909031e688
commit 4215afc639
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ export class RouteRegistry {
return new UnresolvedInstruction(() => {
return componentRecognizer.defaultRoute.handler.resolveComponentType().then(
() => this.generateDefault(componentCursor));
(_) => this.generateDefault(componentCursor));
});
}
}