forked from phoenix/litellm-mirror
(fix) show correct spend on ui
This commit is contained in:
parent
6233351b01
commit
7df2d7cb33
4 changed files with 6 additions and 18 deletions
|
@ -55,7 +55,7 @@ const ViewUserSpend: React.FC<ViewUserSpendProps> = ({ userID, userSpendData, us
|
|||
|
||||
const displayMaxBudget = maxBudget !== null ? `$${maxBudget} limit` : "No limit";
|
||||
|
||||
const roundedSpend = spend !== undefined ? spend.toFixed(4) : null;
|
||||
const roundedSpend = spend !== undefined ? spend.toFixed(5) : null;
|
||||
|
||||
return (
|
||||
<>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue