This commit is contained in:
James Ketr 2025-05-23 11:54:26 -07:00
parent 2c9a690add
commit 2a87896958
3 changed files with 3 additions and 2 deletions

View File

@ -10,5 +10,6 @@
margin: 0 auto;
overflow-y: auto;
height: 100%;
justify-content: center;
}

View File

@ -366,7 +366,7 @@ const Conversation = forwardRef<ConversationHandle, ConversationProps>((props: C
// ...sx
// }}
// >
<Box sx={{ p: 1, mt: 0, overflow: "hidden", ...sx }}>
<Box className="Conversation" sx={{ p: 1, mt: 0, overflow: "hidden", ...sx }}>
{
filteredConversation.map((message, index) =>
<Message key={index} expanded={message.expanded === undefined ? true : message.expanded} {...{ sendQuery: processQuery, message, connectionBase, sessionId, setSnack, submitQuery }} />

View File

@ -185,7 +185,7 @@ const GenerateCandidate = (props: BackstoryElementProps) => {
sessionId,
connectionBase,
onComplete: (msg) => {
console.log("Profile generation response:", msg);
// console.log("Profile generation response:", msg);
switch (msg.status) {
case "partial":
case "done":