Skip to content

Commit ad6a943

Browse files
committed
Fix lint error regarding missing interface
1 parent 7a24bf2 commit ad6a943

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app/notifications/suggestion-targets/publication-claim/publication-claim.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
NgIf,
55
} from '@angular/common';
66
import {
7+
AfterViewInit,
78
Component,
89
Input,
910
OnDestroy,
@@ -51,7 +52,7 @@ import { SuggestionTargetsStateService } from '../suggestion-targets.state.servi
5152
],
5253
standalone: true,
5354
})
54-
export class PublicationClaimComponent implements OnDestroy, OnInit {
55+
export class PublicationClaimComponent implements AfterViewInit, OnDestroy, OnInit {
5556

5657
/**
5758
* The source for which to list targets

0 commit comments

Comments
 (0)