From 85e69a2cd210d6c3db018a1be0f728bbdaf056e3 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 29 Jan 2024 08:36:04 -0800 Subject: [PATCH] (fix) ui - build error --- ui/litellm-dashboard/src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/app/page.tsx b/ui/litellm-dashboard/src/app/page.tsx index ad5f35227..f475c5e31 100644 --- a/ui/litellm-dashboard/src/app/page.tsx +++ b/ui/litellm-dashboard/src/app/page.tsx @@ -1,12 +1,14 @@ -import React from "react"; +import React, { Suspense } from "react"; import Navbar from "../components/navbar"; import UserDashboard from "../components/user_dashboard"; const CreateKeyPage = () => { return ( + Loading...}>
+
); };