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