Merge pull request #7852 from BerriAI/litellm_fix_base_url

Fix invalid base URL error
This commit is contained in:
yujonglee 2025-01-18 22:14:14 +09:00 committed by GitHub
commit 4e5d68a1d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 () => {