forked from phoenix/litellm-mirror
switch off prod logs on ui
This commit is contained in:
parent
7f847f194d
commit
896026c468
15 changed files with 48 additions and 11 deletions
|
@ -36,6 +36,11 @@ import {
|
|||
Grid,
|
||||
} from "@tremor/react";
|
||||
import { CogIcon } from "@heroicons/react/outline";
|
||||
const isLocal = process.env.NODE_ENV === "development";
|
||||
const proxyBaseUrl = isLocal ? "http://localhost:4000" : null;
|
||||
if (isLocal != true) {
|
||||
console.log = function() {};
|
||||
}
|
||||
interface TeamProps {
|
||||
teams: any[] | null;
|
||||
searchParams: any;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue