llmasaservice-ui 0.4.3 → 0.4.4

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 CHANGED
@@ -462,7 +462,7 @@ var ChatPanel = ({
462
462
  const handleSuggestionClick = (suggestion) => {
463
463
  continueChat(suggestion);
464
464
  };
465
- return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, console.log("history", history), /* @__PURE__ */ import_react.default.createElement(
465
+ return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(
466
466
  "div",
467
467
  {
468
468
  style: { width, height },
package/dist/index.mjs CHANGED
@@ -429,7 +429,7 @@ var ChatPanel = ({
429
429
  const handleSuggestionClick = (suggestion) => {
430
430
  continueChat(suggestion);
431
431
  };
432
- return /* @__PURE__ */ React.createElement(React.Fragment, null, console.log("history", history), /* @__PURE__ */ React.createElement(
432
+ return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
433
433
  "div",
434
434
  {
435
435
  style: { width, height },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmasaservice-ui",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Prebuilt UI components for LLMAsAService.io",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/ChatPanel.tsx CHANGED
@@ -518,7 +518,6 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
518
518
 
519
519
  return (
520
520
  <>
521
- {console.log("history", history)}
522
521
  <div
523
522
  style={{ width: width, height: height }}
524
523
  className={"side-panel" + (theme === "light" ? "" : "-dark")}