simple get inventory

This commit is contained in:
2026-01-02 14:17:44 +01:00
parent 69115486ed
commit ab27bcb5bc
6 changed files with 92 additions and 26 deletions

View File

@@ -6,6 +6,9 @@ import { useRef } from "react";
import "./chatWidget.css"
//FIXME: split element to avoid re render (convcard are being re rendered every time something is typed in the creation )
//TODO: split into multiple component
export default function ChatWidget({convlist}) {
const {
createConversation,
@@ -77,11 +80,7 @@ return (
disabled={!activeConvId}
/>
{showCreateConv && (
<CreateConvMenu
onSend={createConversation}
/>
)}
</div>
);