Skip to content

Commit

Permalink
Fix lint error regarding missing interface
Browse files Browse the repository at this point in the history
  • Loading branch information
tdonohue committed Aug 8, 2024
1 parent 7a24bf2 commit ad6a943
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
NgIf,
} from '@angular/common';
import {
AfterViewInit,
Component,
Input,
OnDestroy,
Expand Down Expand Up @@ -51,7 +52,7 @@ import { SuggestionTargetsStateService } from '../suggestion-targets.state.servi
],
standalone: true,
})
export class PublicationClaimComponent implements OnDestroy, OnInit {
export class PublicationClaimComponent implements AfterViewInit, OnDestroy, OnInit {

/**
* The source for which to list targets
Expand Down

0 comments on commit ad6a943

Please sign in to comment.