Skip to content

Commit

Permalink
fix(angular): rename withNonEnabledBlockingInitialNavigation to withE…
Browse files Browse the repository at this point in the history
…nabledBlockingInitialNavigation (#12633)
  • Loading branch information
wizardnet972 committed Oct 17, 2022
1 parent c227a4f commit e7ebab8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -3,7 +3,7 @@
exports[`app --standalone should generate a standalone app correctly with routing 1`] = `
"import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { provideRouter, withNonEnabledBlockingInitialNavigation } from '@angular/router';
import { provideRouter, withEnabledBlockingInitialNavigation } from '@angular/router';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';
import { appRoutes } from './app/app.routes';
Expand Down
Expand Up @@ -49,7 +49,7 @@ const standaloneComponentMainContents = (
import { bootstrapApplication } from '@angular/platform-browser';${
routerModuleSetup
? `
import { provideRouter, withNonEnabledBlockingInitialNavigation } from '@angular/router'`
import { provideRouter, withEnabledBlockingInitialNavigation } from '@angular/router'`
: ``
};
import { AppComponent } from './app/app.component';
Expand Down
Expand Up @@ -21,7 +21,7 @@ module.exports = withModuleFederation(config);"
exports[`Host App Generator should generate a host with remotes using standalone components 1`] = `
"import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { provideRouter, withNonEnabledBlockingInitialNavigation } from '@angular/router';
import { provideRouter, withEnabledBlockingInitialNavigation } from '@angular/router';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';
import { appRoutes } from './app/app.routes';
Expand Down

0 comments on commit e7ebab8

Please sign in to comment.