Skip to content

Commit 97c646d

Browse files
committed
🚨 Ran linter
1 parent f8ba72a commit 97c646d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

‎projects/lazy-dialogs/src/lib/services/lazy-dialog.service.ts‎

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ import {
1212
ViewContainerRef,
1313
} from '@angular/core';
1414

15-
import {
16-
LazyDialogRef,
17-
ModuleWithLazyDialog,
18-
} from '../models';
15+
import { LazyDialogRef, ModuleWithLazyDialog } from '../models';
1916

2017
/**
2118
* The LazyDialogService responsible for creating lazy loading dialogs.
@@ -111,9 +108,7 @@ export class LazyDialogService {
111108
let componentType: Type<ComponentType>;
112109
let moduleRef: NgModuleRef<ModuleWithLazyDialog<ComponentType>> | undefined;
113110

114-
if (
115-
resolvedModule.prototype instanceof ModuleWithLazyDialog
116-
) {
111+
if (resolvedModule.prototype instanceof ModuleWithLazyDialog) {
117112
const castedModule = resolvedModule as Type<
118113
ModuleWithLazyDialog<ComponentType>
119114
>;

0 commit comments

Comments
 (0)