File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
apps/opencode/src/commands Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ export const dailyCommand = define({
147147 for ( const data of dailyData ) {
148148 table . push ( [
149149 data . date ,
150- formatModelsDisplayMultiline ( data . modelsUsed . map ( m => `• ${ m } ` ) ) ,
150+ formatModelsDisplayMultiline ( data . modelsUsed ) ,
151151 formatNumber ( data . inputTokens ) ,
152152 formatNumber ( data . outputTokens ) ,
153153 formatNumber ( data . cacheCreationTokens ) ,
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ export const monthlyCommand = define({
147147 for ( const data of monthlyData ) {
148148 table . push ( [
149149 data . month ,
150- formatModelsDisplayMultiline ( data . modelsUsed . map ( m => `• ${ m } ` ) ) ,
150+ formatModelsDisplayMultiline ( data . modelsUsed ) ,
151151 formatNumber ( data . inputTokens ) ,
152152 formatNumber ( data . outputTokens ) ,
153153 formatNumber ( data . cacheCreationTokens ) ,
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export const weeklyCommand = define({
172172 for ( const data of weeklyData ) {
173173 table . push ( [
174174 data . week ,
175- formatModelsDisplayMultiline ( data . modelsUsed . map ( m => `• ${ m } ` ) ) ,
175+ formatModelsDisplayMultiline ( data . modelsUsed ) ,
176176 formatNumber ( data . inputTokens ) ,
177177 formatNumber ( data . outputTokens ) ,
178178 formatNumber ( data . cacheCreationTokens ) ,
You can’t perform that action at this time.
0 commit comments