Skip to content

Commit

Permalink
DON-998: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorota Hawro committed Dec 16, 2024
1 parent 680b00e commit 8ab2e08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/app/mandate.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {environment} from "../environments/environment";
import {IdentityService, getPersonAuthHttpOptions } from "./identity.service";
import { HttpClient } from "@angular/common/http";
import {Mandate} from "./mandate.model";
import {Campaign} from "./campaign.model";

@Injectable({
providedIn: 'root',
Expand Down
9 changes: 3 additions & 6 deletions src/app/mandate/mandate.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Component, OnInit} from '@angular/core';
import {ComponentsModule} from "@biggive/components-angular";
import {DatePipe} from "@angular/common";
import {Mandate} from "../mandate.model";
import {Donation} from "../donation.model";
import {ExactCurrencyPipe} from "../exact-currency.pipe";
import {ActivatedRoute} from "@angular/router";

Expand All @@ -18,11 +17,9 @@ import {ActivatedRoute} from "@angular/router";
styleUrl: './mandate.component.scss'
})
export class MandateComponent implements OnInit {
complete: boolean = true;
encodedShareUrl: string = '';
encodedPrefilledText: string = '';
donation: Donation;
mandate: Mandate;
protected encodedShareUrl: string = '';
protected encodedPrefilledText: string = '';
protected mandate: Mandate;

constructor(
private route: ActivatedRoute
Expand Down

0 comments on commit 8ab2e08

Please sign in to comment.