Browse Source

fix : address all PR comments

pull/5702/head
Aditya Pawar 3 weeks ago
parent
commit
770634cfe1
  1. 2
      apps/client/src/app/app.module.ts
  2. 6
      apps/client/src/app/components/footer/footer.component.ts

2
apps/client/src/app/app.module.ts

@ -18,7 +18,6 @@ import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { ServiceWorkerModule } from '@angular/service-worker'; import { ServiceWorkerModule } from '@angular/service-worker';
import { provideIonicAngular } from '@ionic/angular/standalone'; import { provideIonicAngular } from '@ionic/angular/standalone';
import { IonIcon } from '@ionic/angular/standalone';
import { provideMarkdown } from 'ngx-markdown'; import { provideMarkdown } from 'ngx-markdown';
import { provideNgxSkeletonLoader } from 'ngx-skeleton-loader'; import { provideNgxSkeletonLoader } from 'ngx-skeleton-loader';
import { NgxStripeModule, STRIPE_PUBLISHABLE_KEY } from 'ngx-stripe'; import { NgxStripeModule, STRIPE_PUBLISHABLE_KEY } from 'ngx-stripe';
@ -49,7 +48,6 @@ export function NgxStripeFactory(): string {
GfFooterComponent, GfFooterComponent,
GfHeaderComponent, GfHeaderComponent,
GfNotificationModule, GfNotificationModule,
IonIcon,
MatAutocompleteModule, MatAutocompleteModule,
MatChipsModule, MatChipsModule,
MatNativeDateModule, MatNativeDateModule,

6
apps/client/src/app/components/footer/footer.component.ts

@ -18,11 +18,11 @@ import { openOutline } from 'ionicons/icons';
@Component({ @Component({
changeDetection: ChangeDetectionStrategy.OnPush, changeDetection: ChangeDetectionStrategy.OnPush,
imports: [CommonModule, GfLogoComponent, IonIcon, RouterModule],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
selector: 'gf-footer', selector: 'gf-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'], styleUrls: ['./footer.component.scss'],
imports: [CommonModule, GfLogoComponent, IonIcon, RouterModule], templateUrl: './footer.component.html'
schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfFooterComponent implements OnChanges { export class GfFooterComponent implements OnChanges {
@Input() public info: InfoItem; @Input() public info: InfoItem;

Loading…
Cancel
Save