X Tutup
Skip to content

Commit 4215afc

Browse files
committed
fix(router): fix a typing issue
Closes #5518
1 parent 909031e commit 4215afc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/angular2/src/router/route_registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ export class RouteRegistry {
434434

435435
return new UnresolvedInstruction(() => {
436436
return componentRecognizer.defaultRoute.handler.resolveComponentType().then(
437-
() => this.generateDefault(componentCursor));
437+
(_) => this.generateDefault(componentCursor));
438438
});
439439
}
440440
}

0 commit comments

Comments
 (0)
X Tutup