Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oriolagobat committed Jan 15, 2024
1 parent 053ddd3 commit 40c94b0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion app/src/app/pages/about/about.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
{{'ABOUT.LEARNMORE' | translate}}
<ion-icon slot="end" name="logo-github"></ion-icon>
</ion-button>
<ion-button class="custom-button" expand="full" color="primary" href="https://www.buymeacoffee.com/refuapp">
<ion-button
class="custom-button"
expand="full"
color="primary"
href="https://www.buymeacoffee.com/refuapp"
>
{{'ABOUT.DONATE' | translate}}
<ion-icon slot="end" name="cash-outline"></ion-icon>
</ion-button>
Expand Down
8 changes: 6 additions & 2 deletions app/src/app/pages/reservations/reservations.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ReservationsPageRoutingModule } from './reservations-routing.module';
import { ReservationsPage } from './reservations.page';
import { TranslateModule } from '@ngx-translate/core';
import { ReservationsItemComponent } from '../../components/reservations-item/reservations-item.component';
import {BannerAdComponent} from "../../components/banner-ad/banner-ad.component";
import { BannerAdComponent } from '../../components/banner-ad/banner-ad.component';

@NgModule({
imports: [
Expand All @@ -19,7 +19,11 @@ import {BannerAdComponent} from "../../components/banner-ad/banner-ad.component"
ReservationsPageRoutingModule,
TranslateModule,
],
declarations: [ReservationsPage, ReservationsItemComponent, BannerAdComponent],
declarations: [
ReservationsPage,
ReservationsItemComponent,
BannerAdComponent,
],
exports: [ReservationsItemComponent],
})
export class ReservationsPageModule {}

0 comments on commit 40c94b0

Please sign in to comment.