forked from phoenix/litellm-mirror
(fix) ui - don't show litellm-admin-keys
This commit is contained in:
parent
34a0e4d3e1
commit
d19a9e833b
1 changed files with 4 additions and 0 deletions
|
@ -67,6 +67,10 @@ const ViewKeyTable: React.FC<ViewKeyTableProps> = ({
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{data.map((item) => {
|
{data.map((item) => {
|
||||||
console.log(item);
|
console.log(item);
|
||||||
|
// skip item if item.team_id == "litellm-dashboard"
|
||||||
|
if (item.team_id === "litellm-dashboard") {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<TableRow key={item.token}>
|
<TableRow key={item.token}>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue