@@ -556,15 +556,15 @@ const UsageRecordsTab = ({ fixedSource, basePath }: UsageRecordsTabProps = {}) =
556556 </ div >
557557 </ div >
558558 < div className = "flex items-center justify-between text-xs" >
559- < div className = "font-medium" > { t ( 'Input/Output Cost(¥) ' ) } </ div >
559+ < div className = "font-medium" > { t ( 'Input/Output Cost' ) } </ div >
560560 < div >
561- ¥ { toFixed ( usageStat ?. sumInputCost ) } /
561+ { toFixed ( usageStat ?. sumInputCost ) } /
562562 { toFixed ( usageStat ?. sumOutputCost ) }
563563 </ div >
564564 </ div >
565565 < div className = "flex items-center justify-between text-xs" >
566566 < div className = "font-medium" > { t ( 'Total Cost' ) } </ div >
567- < div > ¥ { toFixed ( usageStat ?. sumTotalCost ) } </ div >
567+ < div > { toFixed ( usageStat ?. sumTotalCost ) } </ div >
568568 </ div >
569569 </ Card >
570570 { usageLogs . map ( ( log , index ) => (
@@ -588,15 +588,15 @@ const UsageRecordsTab = ({ fixedSource, basePath }: UsageRecordsTabProps = {}) =
588588 </ div >
589589 < div className = "flex items-center justify-between text-xs mt-1" >
590590 < div className = "font-medium" >
591- { t ( 'Input/Output Cost(¥) ' ) }
591+ { t ( 'Input/Output Cost' ) }
592592 </ div >
593593 < div >
594- ¥ { toFixed ( log . inputCost ) } /{ toFixed ( log . outputCost ) }
594+ { toFixed ( log . inputCost ) } /{ toFixed ( log . outputCost ) }
595595 </ div >
596596 </ div >
597597 < div className = "flex items-center justify-between text-xs mt-1" >
598598 < div className = "font-medium" > { t ( 'Total Cost' ) } </ div >
599- < div > ¥ { toFixed ( log . inputCost + log . outputCost ) } </ div >
599+ < div > { toFixed ( log . inputCost + log . outputCost ) } </ div >
600600 </ div >
601601 < div className = "flex items-center justify-between text-xs mt-1" >
602602 < div className = "font-medium" > { t ( 'IP' ) } </ div >
@@ -624,8 +624,8 @@ const UsageRecordsTab = ({ fixedSource, basePath }: UsageRecordsTabProps = {}) =
624624 < TableHead > { t ( 'Date' ) } </ TableHead >
625625 < TableHead > { t ( 'Model' ) } </ TableHead >
626626 < TableHead > { t ( 'Input/Output Tokens' ) } </ TableHead >
627- < TableHead > { t ( 'Input/Output Cost(¥) ' ) } </ TableHead >
628- < TableHead > { t ( 'Total Cost(¥) ' ) } </ TableHead >
627+ < TableHead > { t ( 'Input/Output Cost' ) } </ TableHead >
628+ < TableHead > { t ( 'Total Cost' ) } </ TableHead >
629629 < TableHead > { t ( 'IP' ) } </ TableHead >
630630 < TableHead > { t ( 'Finish Reason' ) } </ TableHead >
631631 < TableHead > { t ( 'Total Duration(ms)' ) } </ TableHead >
@@ -645,10 +645,10 @@ const UsageRecordsTab = ({ fixedSource, basePath }: UsageRecordsTabProps = {}) =
645645 { log . inputTokens } /{ log . outputTokens }
646646 </ TableCell >
647647 < TableCell >
648- ¥ { toFixed ( log . inputCost ) } /¥ { toFixed ( log . outputCost ) }
648+ { toFixed ( log . inputCost ) } /{ toFixed ( log . outputCost ) }
649649 </ TableCell >
650650 < TableCell >
651- ¥ { toFixed ( log . inputCost + log . outputCost ) }
651+ { toFixed ( log . inputCost + log . outputCost ) }
652652 </ TableCell >
653653 < TableCell > { log . ip } </ TableCell >
654654 < TableCell > { log . finishReason } </ TableCell >
@@ -667,10 +667,10 @@ const UsageRecordsTab = ({ fixedSource, basePath }: UsageRecordsTabProps = {}) =
667667 { formatNumberAsMoney ( usageStat ?. sumOutputTokens ) }
668668 </ TableCell >
669669 < TableCell >
670- ¥ { toFixed ( usageStat ?. sumInputCost ) } / ¥
670+ { toFixed ( usageStat ?. sumInputCost ) } /
671671 { toFixed ( usageStat ?. sumOutputCost ) }
672672 </ TableCell >
673- < TableCell > ¥ { toFixed ( usageStat ?. sumTotalCost ) } </ TableCell >
673+ < TableCell > { toFixed ( usageStat ?. sumTotalCost ) } </ TableCell >
674674 < TableCell colSpan = { 3 } > </ TableCell >
675675 </ TableRow >
676676 </ TableFooter >
0 commit comments