Skip to content

Commit f3755a8

Browse files
chore(all): fix lint errors
1 parent 39c1fbe commit f3755a8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/navigation-instruction.js

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface NavigationInstructionInit {
1212

1313
export class CommitChangesStep {
1414
run(navigationInstruction: NavigationInstruction, next: Function) {
15-
1615
return navigationInstruction._commitChanges(true).then(() => {
1716
navigationInstruction._updateTitle();
1817
return next();

src/router.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ export class Router {
450450
config: null // config will be created by the chained parent catchAllHandler
451451
}));
452452

453-
return evaluateNavigationStrategy(instruction, router.catchAllHandler)
453+
return evaluateNavigationStrategy(instruction, router.catchAllHandler);
454454
}
455455
}
456456

@@ -462,7 +462,7 @@ export class Router {
462462
instruction.fragment = router.baseUrl; //need to change the fragment in case of a redirect instead of moduleId
463463
return instruction;
464464
} else if (instruction.parentInstruction) {
465-
return this._findParentInstructionFromRouter(router, instruction.parentInstruction)
465+
return this._findParentInstructionFromRouter(router, instruction.parentInstruction);
466466
}
467467
return undefined;
468468
}

0 commit comments

Comments
 (0)