|
1 | 1 | import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; |
2 | 2 | import { AppModule } from '../../../app.module'; |
3 | | -import { DashboardCardValueComponent } from './dashboard-card/dashboard-card-value/dashboard-card-value.component'; |
4 | 3 | import { MetricsService } from '../../../services/api/metrics.service'; |
5 | 4 | import { CopilotMetrics } from '../../../services/api/metrics.service.interfaces'; |
6 | | -import { ActivityResponse, Seat, SeatService } from '../../../services/api/seat.service'; |
7 | | -import { MembersService } from '../../../services/api/members.service'; |
| 5 | +import { ActivityResponse, SeatService } from '../../../services/api/seat.service'; |
8 | 6 | import { CopilotSurveyService, Survey } from '../../../services/api/copilot-survey.service'; |
9 | | -import { forkJoin, Subject, Subscription, takeUntil } from 'rxjs'; |
| 7 | +import { Subject, Subscription, takeUntil } from 'rxjs'; |
10 | 8 | import { AdoptionChartComponent } from '../copilot-value/adoption-chart/adoption-chart.component'; |
11 | 9 | import { DailyActivityChartComponent } from '../copilot-value/daily-activity-chart/daily-activity-chart.component'; |
12 | 10 | import { TimeSavedChartComponent } from '../copilot-value/time-saved-chart/time-saved-chart.component'; |
@@ -104,7 +102,6 @@ export class CopilotDashboardComponent implements OnInit, OnDestroy { |
104 | 102 |
|
105 | 103 | constructor( |
106 | 104 | private metricsService: MetricsService, |
107 | | - private membersService: MembersService, |
108 | 105 | private seatService: SeatService, |
109 | 106 | private surveyService: CopilotSurveyService, |
110 | 107 | private installationsService: InstallationsService, |
|
0 commit comments