fix: lint errors

This commit is contained in:
Evgeny Lupanov 2020-03-25 19:42:11 +03:00
parent b8a75dc0fc
commit de53264843
2 changed files with 3 additions and 9 deletions

View file

@ -3,13 +3,11 @@ import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot} from '
import {Observable} from 'rxjs';
import {map} from 'rxjs/operators';
import {CurrentThemeService} from '../utils/theme.service';
import {NbDateService} from '@nebular/theme';
@Injectable()
export class ThemeGuard implements CanActivate {
constructor(private router: Router,
private currentThemeService: CurrentThemeService,
private dateService: NbDateService<number>) {}
private currentThemeService: CurrentThemeService) {}
canActivate(
route: ActivatedRouteSnapshot,