diff --git a/ui/litellm-dashboard/src/components/create_key_button.tsx b/ui/litellm-dashboard/src/components/create_key_button.tsx index 2a3d81680..bd4fddabb 100644 --- a/ui/litellm-dashboard/src/components/create_key_button.tsx +++ b/ui/litellm-dashboard/src/components/create_key_button.tsx @@ -145,20 +145,29 @@ const CreateKey: React.FC = ({ - {team && team.models ? ( - team.models.map((model: string) => ( - - )) - ) : ( - userModels.map((model: string) => ( - - )) - )} - + {team && team.models ? ( + team.models.includes("all-proxy-models") ? ( + userModels.map((model: string) => ( + ( + + ) + )) + ) : ( + team.models.map((model: string) => ( + + )) + ) + ) : ( + userModels.map((model: string) => ( + + )) + )}