diff --git a/pages/index.tsx b/pages/index.tsx index 7cf856b..080208e 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -8,7 +8,7 @@ import { useEffect, useState } from "react"; export default function Home() { const [conversations, setConversations] = useState([]); const [selectedConversation, setSelectedConversation] = useState(); - const [loading, setLoading] = useState(true); + const [loading, setLoading] = useState(false); const [model, setModel] = useState(OpenAIModel.GPT_3_5); const [lightMode, setLightMode] = useState<"dark" | "light">("dark"); const [messageIsStreaming, setMessageIsStreaming] = useState(false);