Skip to content
Snippets Groups Projects
Commit 5e40de20 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: removed unused var & logging

parent 97d0363f
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,6 @@ export class RouterService {
}
if ( fullPath !== `/${routeFromState}`) {
console.log(`apply state`, stateFromRoute)
store$.dispatch(
generalApplyState({
state: stateFromRoute
......@@ -97,7 +96,6 @@ export class RouterService {
const newUrlUrlTree = router.parseUrl(joinedRoutes)
if (currUrlUrlTree.toString() !== newUrlUrlTree.toString()) {
console.log(`navigate\n${currUrlUrlTree.toString()}\n${newUrlUrlTree.toString()}`)
router.navigateByUrl(joinedRoutes)
}
}
......
......@@ -7,7 +7,6 @@ import { map, filter, startWith } from "rxjs/operators";
import { MatBottomSheet } from "@angular/material/bottom-sheet";
import { MatDialog } from "@angular/material/dialog";
import { ARIA_LABELS } from 'common/constants'
import { PureContantService } from "src/util";
import { FormControl } from "@angular/forms";
import { viewerStateNavigationStateSelector, viewerStateSelectedTemplatePureSelector } from "src/services/state/viewerState/selectors";
......@@ -55,7 +54,6 @@ export class StatusCardComponent implements OnInit, OnChanges{
private log: LoggingService,
private bottomSheet: MatBottomSheet,
private dialog: MatDialog,
//private pureConstantService: PureContantService,
@Optional() @Inject(NEHUBA_INSTANCE_INJTKN) nehubaViewer$: Observable<NehubaViewerUnit>
) {
this.useTouchInterface$ = of(true) //this.pureConstantService.useTouchUI$
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment