From 23c9509ad62c724031dcff4b8dd2b01ddbfeced1 Mon Sep 17 00:00:00 2001 From: samlhuillier Date: Sun, 26 Nov 2023 17:41:49 -0600 Subject: [PATCH] make chatbot component wrap to the edge --- src/components/Chat/Chat.tsx | 2 +- src/components/FileEditorContainer.tsx | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/Chat/Chat.tsx b/src/components/Chat/Chat.tsx index b9eb6007..9b670b06 100644 --- a/src/components/Chat/Chat.tsx +++ b/src/components/Chat/Chat.tsx @@ -79,7 +79,7 @@ const ChatWithLLM: React.FC = () => { }; return ( -
+
{loading &&

Loading...

}
diff --git a/src/components/FileEditorContainer.tsx b/src/components/FileEditorContainer.tsx index f25a5b51..0740d9e2 100644 --- a/src/components/FileEditorContainer.tsx +++ b/src/components/FileEditorContainer.tsx @@ -38,24 +38,25 @@ const FileEditorContainer: React.FC = ({}) => { />
{selectedFilePath && ( -
+
-
+
+
+ +
)} -
);