llmasaservice-ui 0.7.23 → 0.7.24

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
@@ -239,7 +239,6 @@ var ChatPanel = ({
239
239
  }, [idle]);
240
240
  (0, import_react3.useEffect)(() => {
241
241
  if (Object.keys(initialHistory).length === 0) return;
242
- console.log("initialHistory", initialHistory);
243
242
  setHistory(initialHistory);
244
243
  }, [initialHistory]);
245
244
  (0, import_react3.useEffect)(() => {
package/dist/index.mjs CHANGED
@@ -205,7 +205,6 @@ var ChatPanel = ({
205
205
  }, [idle]);
206
206
  useEffect(() => {
207
207
  if (Object.keys(initialHistory).length === 0) return;
208
- console.log("initialHistory", initialHistory);
209
208
  setHistory(initialHistory);
210
209
  }, [initialHistory]);
211
210
  useEffect(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmasaservice-ui",
3
- "version": "0.7.23",
3
+ "version": "0.7.24",
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
@@ -160,8 +160,6 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
160
160
 
161
161
  useEffect(() => {
162
162
  if (Object.keys(initialHistory).length === 0) return;
163
-
164
- console.log("initialHistory", initialHistory);
165
163
  setHistory(initialHistory);
166
164
 
167
165
  }, [initialHistory]);