Skip to content

Commit ad6c474

Browse files
Fix linting
1 parent 5340597 commit ad6c474

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

apps/codelab/src/app/admin/content/presentation-editor/content.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export class ContentComponent {
1919
this.contentService.state$
2020
]).pipe(
2121
map(([presentationId, presentations]) => {
22-
debugger;
2322
return presentations.find(
2423
(p: ContentPresentation) => p.id === presentationId
2524
);
@@ -33,7 +32,6 @@ export class ContentComponent {
3332
this.presentation$
3433
]).pipe(
3534
map(([slide, presentation]) => {
36-
debugger;
3735
return presentation.slides[slide || 0];
3836
})
3937
);

apps/codelab/src/app/admin/content/presentation-editor/preview/slide-preview/blank/blank.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export class BlankComponent implements OnInit {
99
constructor() {}
1010

1111
ngOnInit(): void {
12+
// @ts-ignore: Debugger
1213
debugger;
1314
}
1415
}

0 commit comments

Comments
 (0)