forked from phoenix/litellm-mirror
(fix) ui - build error
This commit is contained in:
parent
50044f090f
commit
85e69a2cd2
1 changed files with 3 additions and 1 deletions
|
@ -1,12 +1,14 @@
|
||||||
import React from "react";
|
import React, { Suspense } from "react";
|
||||||
import Navbar from "../components/navbar";
|
import Navbar from "../components/navbar";
|
||||||
import UserDashboard from "../components/user_dashboard";
|
import UserDashboard from "../components/user_dashboard";
|
||||||
const CreateKeyPage = () => {
|
const CreateKeyPage = () => {
|
||||||
return (
|
return (
|
||||||
|
<Suspense fallback={<div>Loading...</div>}>
|
||||||
<div className="flex min-h-screen flex-col items-center">
|
<div className="flex min-h-screen flex-col items-center">
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<UserDashboard />
|
<UserDashboard />
|
||||||
</div>
|
</div>
|
||||||
|
</Suspense>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue