Skip to content

Commit

Permalink
refactor: clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed Feb 12, 2025
1 parent 491fc58 commit b2e60a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
21 changes: 10 additions & 11 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
SpinnerActivityDirective,
SpinnerComponent
} from '@igo2/common/spinner';
import { StopPropagationDirective } from '@igo2/common/stop-propagation';

import { ConfigService } from '@igo2/core/config';
import { LanguageService } from '@igo2/core/language';
import { MessageService } from '@igo2/core/message';
Expand All @@ -28,16 +28,15 @@ import { PwaService } from './services/pwa.service';
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
imports: [
SpinnerComponent,
SpinnerActivityDirective,
HeaderComponent,
FooterComponent,
StopPropagationDirective,
NgIf,
AuthFormComponent,
PortalComponent,
NgClass
]
SpinnerComponent,
SpinnerActivityDirective,
HeaderComponent,
FooterComponent,
NgIf,
AuthFormComponent,
PortalComponent,
NgClass
]
})
export class AppComponent implements OnInit {
public authConfig: AuthOptions;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NgIf } from '@angular/common';

import { Component, EventEmitter, Input, Output } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
Expand All @@ -9,12 +9,11 @@ import { IgoLanguageModule } from '@igo2/core/language';
@Component({
selector: 'app-expansion-panel-button',
imports: [
MatButtonModule,
MatIconModule,
MatTooltipModule,
IgoLanguageModule,
NgIf
],
MatButtonModule,
MatIconModule,
MatTooltipModule,
IgoLanguageModule
],
templateUrl: './expansion-panel-button.component.html',
styleUrls: ['./expansion-panel-button.component.scss']
})
Expand Down

0 comments on commit b2e60a2

Please sign in to comment.