Skip to content

Commit

Permalink
sonar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Aug 29, 2021
1 parent b4bc0bd commit e292318
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';
import { Component, Input, ViewEncapsulation } from '@angular/core';
import SwiperCore, { Navigation, Pagination } from 'swiper';

SwiperCore.use([ Pagination, Navigation ])
SwiperCore.use( [ Pagination, Navigation ] );

export interface Partner {
brandLogo: string
brandLogo: string;
}

@Component({
@Component( {
selector: 'app-swiper-wrapper',
templateUrl: './swiper-wrapper.component.html',
styleUrls: ['./swiper-wrapper.component.scss'],
styleUrls: [ './swiper-wrapper.component.scss' ],
encapsulation: ViewEncapsulation.None,
})
} )

export class SwiperWrapperComponent {
@Input() partners: Partner[] = [
Expand All @@ -21,5 +21,5 @@ export class SwiperWrapperComponent {
{ brandLogo: '../../../../assets/common/partners/google-logo.png' },
{ brandLogo: '../../../../assets/common/partners/linkedin-logo.png' },
{ brandLogo: '../../../../assets/common/partners/stripe-logo.png' }
]
];
}

0 comments on commit e292318

Please sign in to comment.