Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Dec 12, 2024
1 parent c6efd22 commit 42feef1
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AfterViewInit, Component, inject, Input, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { Component, inject, Input, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormGroup, NgForm } from '@angular/forms';
import { DateTime } from 'luxon';
Expand Down Expand Up @@ -28,7 +28,7 @@ import { SpinnerComponent } from '@/standalone/core/components/spinner/spinner.c
templateUrl: './feedback-submission-form.component.html',
styleUrls: ['./feedback-submission-form.component.scss']
})
export class FeedbackSubmissionFormComponent implements AfterViewInit, OnInit, OnDestroy {
export class FeedbackSubmissionFormComponent implements OnInit, OnDestroy {
@Input() feedbackEntity?: FeedbackSubmissionAttachedEntity;
@Input() templateId?: string;
@Input() isPreview = false;
Expand Down Expand Up @@ -65,9 +65,6 @@ export class FeedbackSubmissionFormComponent implements AfterViewInit, OnInit, O
this.autosaveInit();
}

ngAfterViewInit(): void {
}

ngOnDestroy(): void {
this.autoUpdateSub?.unsubscribe();
}
Expand Down

0 comments on commit 42feef1

Please sign in to comment.