= ({
Max Budget:{" "}
{info.max_budget !== null ? `$${formatNumberWithCommas(info.max_budget, 4)}` : "No Limit"}
+
+ Soft Budget:{" "}
+ {info.soft_budget !== null && info.soft_budget !== undefined
+ ? `$${formatNumberWithCommas(info.soft_budget, 4)}`
+ : "No Limit"}
+
Budget Reset: {info.budget_duration || "Never"}
+ {info.metadata?.soft_budget_alerting_emails &&
+ Array.isArray(info.metadata.soft_budget_alerting_emails) &&
+ info.metadata.soft_budget_alerting_emails.length > 0 && (
+
+ Soft Budget Alerting Emails: {info.metadata.soft_budget_alerting_emails.join(", ")}
+
+ )}
diff --git a/ui/litellm-dashboard/tsconfig.json b/ui/litellm-dashboard/tsconfig.json
index 5b0352feb98..d24bdd340f7 100644
--- a/ui/litellm-dashboard/tsconfig.json
+++ b/ui/litellm-dashboard/tsconfig.json
@@ -14,7 +14,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
- "jsx": "preserve",
+ "jsx": "react-jsx",
"incremental": true,
"plugins": [
{