From 15a6e9e0168866456c4b8401877fd71d29967f7e Mon Sep 17 00:00:00 2001 From: Mic Neale Date: Mon, 25 Nov 2024 10:41:47 +1100 Subject: [PATCH] rename --- ui/desktop/src/ChatWindow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/desktop/src/ChatWindow.tsx b/ui/desktop/src/ChatWindow.tsx index aab6048c..61ccc631 100644 --- a/ui/desktop/src/ChatWindow.tsx +++ b/ui/desktop/src/ChatWindow.tsx @@ -31,7 +31,7 @@ const handleResize = (mode: 'expanded' | 'compact') => { } }; -const PlaceholderView: React.FC<{ onExpand: () => void }> = ({ onExpand }) => { +const WingView: React.FC<{ onExpand: () => void }> = ({ onExpand }) => { return (
} /> ) : ( - + )}
);