Skip to content

Commit

Permalink
Add missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Sep 16, 2021
1 parent 531ff8c commit 7514011
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class NotificationButtonComponent implements OnInit, OnDestroy {
this.subscriptions.push(notificationsCountSub);
}

ngOnDestroy() {
ngOnDestroy(): void {
this.subscriptions.forEach(sub => sub.unsubscribe());
}
}

0 comments on commit 7514011

Please sign in to comment.