Skip to content

Commit

Permalink
fix(angular): rename withEnabledBlockingInitialNavigation to withNonE…
Browse files Browse the repository at this point in the history
…nabledBlockingInitialNavigation
  • Loading branch information
wizardnet972 committed Oct 15, 2022
1 parent 62e91f3 commit 7496874
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (environment.production) {
}
bootstrapApplication(AppComponent, {
providers: [provideRouter(appRoutes, withEnabledBlockingInitialNavigation())],
providers: [provideRouter(appRoutes, withNonEnabledBlockingInitialNavigation())],
}).catch((err) => console.error(err));"
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if (environment.production) {
bootstrapApplication(AppComponent${
routerModuleSetup
? `, {
providers: [provideRouter(appRoutes, withEnabledBlockingInitialNavigation())],
providers: [provideRouter(appRoutes, withNonEnabledBlockingInitialNavigation())],
}`
: ''
}).catch((err) => console.error(err));`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (environment.production) {
}
bootstrapApplication(AppComponent, {
providers: [provideRouter(appRoutes, withEnabledBlockingInitialNavigation())],
providers: [provideRouter(appRoutes, withNonEnabledBlockingInitialNavigation())],
}).catch((err) => console.error(err));"
`;

Expand Down

0 comments on commit 7496874

Please sign in to comment.