diff --git a/ui/litellm-dashboard/src/components/model_dashboard.tsx b/ui/litellm-dashboard/src/components/model_dashboard.tsx index 9b8b3c345..744d1ec21 100644 --- a/ui/litellm-dashboard/src/components/model_dashboard.tsx +++ b/ui/litellm-dashboard/src/components/model_dashboard.tsx @@ -1254,12 +1254,21 @@ const handleEditSubmit = async (formValues: Record) => { How many retries should be attempted based on the Exception {retry_policy_map && - Object.keys(retry_policy_map).map((key, idx) => ( -
- {key} - -
- ))} + + + {Object.keys(retry_policy_map).map((key, idx) => ( + + + + + ))} + +
+ {key} + + +
+}