mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-23 22:27:10 +00:00
Merge pull request #7852 from BerriAI/litellm_fix_base_url
Fix invalid base URL error
This commit is contained in:
@@ -54,9 +54,7 @@ const Createuser: React.FC<CreateuserProps> = ({
|
||||
const router = useRouter();
|
||||
const isLocal = process.env.NODE_ENV === "development";
|
||||
|
||||
const [baseUrl, setBaseUrl] = useState(
|
||||
isLocal ? "http://localhost:4000" : "",
|
||||
);
|
||||
const [baseUrl, setBaseUrl] = useState("http://localhost:4000");
|
||||
// get all models
|
||||
useEffect(() => {
|
||||
const fetchData = async () => {
|
||||
|
||||
Reference in New Issue
Block a user