@@ -3,9 +3,8 @@ import type { ReportType } from './types';
33import { REPORT_TYPES } from './types' ;
44import {
55 CopilotIcon ,
6+ CpuIcon ,
67 GraphIcon ,
7- ServerIcon ,
8- WorkflowIcon ,
98 ShieldLockIcon ,
109 PeopleIcon ,
1110 PersonIcon ,
@@ -134,7 +133,7 @@ const TOKEN_USAGE_SCHEMA: ReportSchema = {
134133 type : REPORT_TYPES . TOKEN_USAGE ,
135134 label : 'Token Usage' ,
136135 pluralLabel : 'Token Usage Reports' ,
137- icon : ServerIcon ,
136+ icon : CpuIcon ,
138137 description : 'Token-Based Billing Report Explorer' ,
139138 emptyStateTitle : 'Copilot Usage Viewer' ,
140139 emptyStateText : 'Upload a GitHub billing CSV to visualize Copilot spend, premium requests, and token usage.' ,
@@ -151,7 +150,7 @@ const USAGE_REPORT_SCHEMA: ReportSchema = {
151150 type : REPORT_TYPES . USAGE_REPORT ,
152151 label : 'Usage Report' ,
153152 pluralLabel : 'Metered Usage Reports' ,
154- icon : WorkflowIcon ,
153+ icon : GraphIcon ,
155154 description : 'GitHub Actions, Packages, LFS & Copilot Seats' ,
156155 emptyStateTitle : 'Metered Usage Viewer' ,
157156 emptyStateText : 'Upload a GitHub metered usage CSV to visualize Actions minutes, storage, and product spend.' ,
@@ -377,8 +376,8 @@ export interface NavPageConfig {
377376}
378377
379378export const NAV_PAGES : NavPageConfig [ ] = [
380- { id : PAGE_TYPES . COPILOT , label : 'Copilot usage' , icon : CopilotIcon } ,
381379 { id : PAGE_TYPES . USAGE , label : 'Metered usage' , icon : GraphIcon } ,
380+ { id : PAGE_TYPES . COPILOT , label : 'Copilot usage' , icon : CopilotIcon } ,
382381 { id : PAGE_TYPES . GHAS , label : 'GHAS committers' , icon : ShieldLockIcon } ,
383382 { id : PAGE_TYPES . SEAT_ACTIVITY , label : 'Seat activity' , icon : PersonIcon } ,
384383 { id : PAGE_TYPES . MEMBERS , label : 'Dormant users' , icon : PeopleIcon } ,
0 commit comments