Browse Source
Bugfix/remove NG8113 warning regarding unused IonIcon (#5505)
* Remove IonIcon import
* Update changelog
pull/5497/head^2
Karel De Smet
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
1 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/landing/landing-page.component.ts
|
@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Refactored the rule component to standalone |
|
|
- Refactored the rule component to standalone |
|
|
- Refactored the rules component to standalone |
|
|
- Refactored the rules component to standalone |
|
|
- Refactored the subscription interstitial dialog component to standalone |
|
|
- Refactored the subscription interstitial dialog component to standalone |
|
|
|
|
|
- Removed the `IonIcon` import from the landing page |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
@ -12,7 +12,6 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; |
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
import { MatCardModule } from '@angular/material/card'; |
|
|
import { MatCardModule } from '@angular/material/card'; |
|
|
import { RouterModule } from '@angular/router'; |
|
|
import { RouterModule } from '@angular/router'; |
|
|
import { IonIcon } from '@ionic/angular/standalone'; |
|
|
|
|
|
import { format } from 'date-fns'; |
|
|
import { format } from 'date-fns'; |
|
|
import { addIcons } from 'ionicons'; |
|
|
import { addIcons } from 'ionicons'; |
|
|
import { |
|
|
import { |
|
@ -31,7 +30,6 @@ import { Subject } from 'rxjs'; |
|
|
GfLogoComponent, |
|
|
GfLogoComponent, |
|
|
GfValueComponent, |
|
|
GfValueComponent, |
|
|
GfWorldMapChartComponent, |
|
|
GfWorldMapChartComponent, |
|
|
IonIcon, |
|
|
|
|
|
MatButtonModule, |
|
|
MatButtonModule, |
|
|
MatCardModule, |
|
|
MatCardModule, |
|
|
RouterModule |
|
|
RouterModule |
|
|