From 1257b2bbae94f9ab2397e04d5d33153977e258b4 Mon Sep 17 00:00:00 2001 From: Ben Stein Date: Thu, 17 Oct 2024 10:49:23 -0400 Subject: [PATCH] Minor cleanup --- .../practice-challenge-state-summary.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/gameboard-ui/src/app/prac/components/practice-challenge-state-summary/practice-challenge-state-summary.component.ts b/projects/gameboard-ui/src/app/prac/components/practice-challenge-state-summary/practice-challenge-state-summary.component.ts index 781fffa7..11d90bc9 100644 --- a/projects/gameboard-ui/src/app/prac/components/practice-challenge-state-summary/practice-challenge-state-summary.component.ts +++ b/projects/gameboard-ui/src/app/prac/components/practice-challenge-state-summary/practice-challenge-state-summary.component.ts @@ -5,12 +5,12 @@ import { UserService as LocalUserService } from '@/utility/user.service'; import { UnsubscriberService } from '@/services/unsubscriber.service'; import { Component } from '@angular/core'; import { DateTime } from 'luxon'; -import { Observable, combineLatest, firstValueFrom, map, tap, timer } from 'rxjs'; +import { Observable, combineLatest, map, tap, timer } from 'rxjs'; import { ActiveChallengesRepo } from '@/stores/active-challenges.store'; import { slug } from '@/../tools/functions'; import { TeamService } from '@/api/team.service'; import { ToastService } from '@/utility/services/toast.service'; -import { HubEventAction, NotificationService } from '@/services/notification.service'; +import { NotificationService } from '@/services/notification.service'; @Component({ selector: 'app-practice-challenge-state-summary',