Release Shakeout Part 2 (#1267)

* Fixed manga reader and removed debug code

* Removed some console.logs
This commit is contained in:
Joseph Milazzo 2022-05-20 21:05:09 -05:00 committed by GitHub
parent 92010379f1
commit 81082508f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 9 deletions

View file

@ -63,7 +63,6 @@ export class SideNavComponent implements OnInit, OnDestroy {
if (this.utilityService.getActiveBreakpoint() < Breakpoint.Tablet) {
// collapse side nav
this.navService.sideNavCollapsed$.pipe(take(1)).subscribe(collapsed => {
console.log('Side nav collapsed: ', collapsed);
if (!collapsed) {
this.navService.toggleSideNav();
}