Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yujonglee committed Jan 18, 2025
1 parent c4c5b3a commit 0aa8e4a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ui/litellm-dashboard/src/components/create_user_button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 0aa8e4a

Please sign in to comment.