fix(stats): restore model page rendering

This commit is contained in:
Adam 2026-06-21 05:58:39 -05:00
commit 418a9e4e66
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
2 changed files with 0 additions and 3 deletions

View file

@ -53,7 +53,6 @@ export type StatsModelData = {
tokenChange: number
totals: {
sessions: number
users: number
tokens: number
cost: number
tokensPerSession: number
@ -286,7 +285,6 @@ function buildStatsModelData(
tokenChange: percentChange(current.totalTokens, previous.totalTokens),
totals: {
sessions: current.sessions,
users: current.uniqueUsers,
tokens: current.totalTokens,
cost: round(microcentsToDollars(current.totalCostMicrocents), 2),
tokensPerSession: current.sessions > 0 ? Math.round(current.totalTokens / current.sessions) : 0,