🐛 fix(chatComponent): remove unused openForm state variable
🐛 fix(formModal): remove console.log statement 🐛 fix(formModal): fix formatMessage function to handle string inputs correctly
This commit is contained in:
parent
16fc6bc4a2
commit
9d556bc94c
2 changed files with 3 additions and 4 deletions
|
|
@ -10,7 +10,6 @@ import FormModal from "../../modals/formModal";
|
|||
|
||||
export default function Chat({ flow }: ChatType) {
|
||||
const [open, setOpen] = useState(false);
|
||||
const [openForm, setOpenForm] = useState(false);
|
||||
const [isBuilt, setIsBuilt] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
|
|
|
|||
|
|
@ -166,13 +166,13 @@ export default function FormModal({
|
|||
chatItem.files
|
||||
? {
|
||||
isSend: !chatItem.is_bot,
|
||||
message: chatItem.is_bot ? chatItem.message : formatMessage(chatItem.message),
|
||||
message: formatMessage(chatItem.message),
|
||||
thought: chatItem.intermediate_steps,
|
||||
files: chatItem.files,
|
||||
}
|
||||
: {
|
||||
isSend: !chatItem.is_bot,
|
||||
message: chatItem.is_bot ? chatItem.message : formatMessage(chatItem.message),
|
||||
message: formatMessage(chatItem.message),
|
||||
thought: chatItem.intermediate_steps,
|
||||
}
|
||||
);
|
||||
|
|
@ -305,6 +305,7 @@ export default function FormModal({
|
|||
}, [open]);
|
||||
function formatMessage(inputs: any): string {
|
||||
if (inputs) {
|
||||
if(typeof inputs == "string") return inputs;
|
||||
// inputs is a object with the keys and values being input_keys and keysValue
|
||||
// so the formated message is a string with the keys and values separated by ": "
|
||||
let message = "";
|
||||
|
|
@ -371,7 +372,6 @@ export default function FormModal({
|
|||
}
|
||||
}
|
||||
|
||||
console.log(chatHistory)
|
||||
return (
|
||||
<Dialog open={open} onOpenChange={setModalOpen}>
|
||||
<DialogTrigger className="hidden"></DialogTrigger>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue