Skip to content

Commit 3810b97

Browse files
refactor: remove RouterOutlet from AppComponent imports
RouterOutlet is not used.
1 parent ac05cb3 commit 3810b97

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
1010

1111
### Changed
1212

13+
- Remove RouterOutlet from AppComponent imports as it is not used.
1314
- Deps: update `@angular/cli` to 19.1.7, `@angular/core` to 19.1.6, `@angular/cdk` to 19.1.4 and `@angular/material` to 19.1.4.
1415

1516

src/app/app.component.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ChangeDetectorRef, Component, NgZone, OnInit } from '@angular/core';
22
import { AsyncPipe, NgIf } from '@angular/common';
33
import { FormGroup } from '@angular/forms';
4-
import { RouterOutlet } from '@angular/router';
54
import { BreakpointObserver } from '@angular/cdk/layout';
65
import { MatButtonModule } from '@angular/material/button';
76
import { MatIconRegistry } from '@angular/material/icon';
@@ -22,7 +21,6 @@ import { SettingsService } from './services/settings.service';
2221
imports: [
2322
AsyncPipe,
2423
NgIf,
25-
RouterOutlet,
2624
MatButtonModule,
2725
MatStepperModule,
2826
AddImagesComponent,

0 commit comments

Comments
 (0)