From 7f0d2b66f4df1d1493a33ae1f4fd26496c658658 Mon Sep 17 00:00:00 2001 From: denis0001-dev Date: Sat, 6 Sep 2025 12:10:35 +0300 Subject: [PATCH] Clean up --- frontend/src/ui/components/chat/ChatInterface.tsx | 13 ------------- frontend/src/ui/screen/ChatScreen.tsx | 14 ++++++++------ 2 files changed, 8 insertions(+), 19 deletions(-) delete mode 100644 frontend/src/ui/components/chat/ChatInterface.tsx diff --git a/frontend/src/ui/components/chat/ChatInterface.tsx b/frontend/src/ui/components/chat/ChatInterface.tsx deleted file mode 100644 index 00ed776..0000000 --- a/frontend/src/ui/components/chat/ChatInterface.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { LeftPanel } from "./LeftPanel"; -import { RightPanel } from "./RightPanel"; - -export function ChatInterface() { - return ( -
-
- - -
-
- ); -} diff --git a/frontend/src/ui/screen/ChatScreen.tsx b/frontend/src/ui/screen/ChatScreen.tsx index 2067bee..04b2707 100644 --- a/frontend/src/ui/screen/ChatScreen.tsx +++ b/frontend/src/ui/screen/ChatScreen.tsx @@ -1,11 +1,13 @@ -import { ChatInterface } from "../components/chat/ChatInterface"; -import { CropperDialog } from "../components/profile/CropperDialog"; +import { LeftPanel } from "../components/chat/LeftPanel"; +import { RightPanel } from "../components/chat/RightPanel"; export default function ChatScreen() { return ( - <> - - - +
+
+ + +
+
); } \ No newline at end of file