diff --git a/src/components/Chat/ChatInput/index.tsx b/src/components/Chat/ChatInput/index.tsx index 07c119f..9848a9b 100644 --- a/src/components/Chat/ChatInput/index.tsx +++ b/src/components/Chat/ChatInput/index.tsx @@ -155,7 +155,7 @@ export default function ChatInput() { diff --git a/src/components/Chat/styled.ts b/src/components/Chat/styled.ts index ccc8bbd..3977832 100644 --- a/src/components/Chat/styled.ts +++ b/src/components/Chat/styled.ts @@ -5,7 +5,8 @@ export const ChatContainer = styled.div` display: flex; flex-direction: column; width: 100%; - border-radius: 40px; + border-top-right-radius: 40px; + border-bottom-right-radius: 40px; position: relative; `; diff --git a/src/components/common/Modal/index.tsx b/src/components/common/Modal/index.tsx index 202df3d..971fa55 100644 --- a/src/components/common/Modal/index.tsx +++ b/src/components/common/Modal/index.tsx @@ -27,7 +27,7 @@ export default function Modal({ isOpen, onClose, title, children }: Props) { {children} diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx index 0a2df52..494123e 100644 --- a/src/pages/Home/index.tsx +++ b/src/pages/Home/index.tsx @@ -12,7 +12,7 @@ import useIsMobile from "~/hooks/useIsMobile"; function Home() { const [errorMessage, setErrorMessage] = useState(""); - const [isLoading, setIsLoading] = useState(true); + const [isLoading, setIsLoading] = useState(false); const [isSearchOpen, setIsSearchOpen] = useState(false); const [isSettingsOpen, setIsSettingsOpen] = useState(false); const [isSidebarOpen, setIsSidebarOpen] = useState(true);