diff --git a/src/app/features/note/dialog-add-note/dialog-add-note.component.ts b/src/app/features/note/dialog-add-note/dialog-add-note.component.ts index 753f17d78..4114313cd 100644 --- a/src/app/features/note/dialog-add-note/dialog-add-note.component.ts +++ b/src/app/features/note/dialog-add-note/dialog-add-note.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectionStrategy, Component, inject, OnDestroy } from '@angular/core'; +import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; import { SS } from '../../../core/persistence/storage-keys.const'; import { T } from '../../../t.const'; import { DialogFullscreenMarkdownComponent } from '../../../ui/dialog-fullscreen-markdown/dialog-fullscreen-markdown.component'; @@ -32,10 +32,7 @@ import { SnackService } from '../../../core/snack/snack.service'; TranslatePipe, ], }) -export class DialogAddNoteComponent - extends DialogFullscreenMarkdownComponent - implements OnDestroy -{ +export class DialogAddNoteComponent extends DialogFullscreenMarkdownComponent { // override _matDialogRef: MatDialogRef = // inject>(MatDialogRef); private _noteService = inject(NoteService);