qt-ui-kit 1.0.83 → 1.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -16426,7 +16426,7 @@ function ChatBubble({
|
|
|
16426
16426
|
// src/components/organisms/message_body/chat_body.tsx
|
|
16427
16427
|
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
16428
16428
|
function ChatBody({ messages }) {
|
|
16429
|
-
return /* @__PURE__ */ jsx35("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx35("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
|
|
16429
|
+
return /* @__PURE__ */ jsx35("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx35("div", { className: "flex flex-col place-content-center gap-4", children: messages && Array.from(messages).map((msg) => {
|
|
16430
16430
|
return /* @__PURE__ */ jsx35(
|
|
16431
16431
|
ChatBubble,
|
|
16432
16432
|
{
|