llmasaservice-ui 0.9.0 → 0.9.1

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
@@ -787,7 +787,7 @@ var ChatPanel = ({
787
787
  },
788
788
  body: JSON.stringify({
789
789
  project_id: project_id != null ? project_id : "",
790
- conversation_id: conversation != null ? conversation : "",
790
+ conversation_id: currentConversation != null ? currentConversation : "",
791
791
  emailaddress,
792
792
  comment
793
793
  })
package/dist/index.mjs CHANGED
@@ -753,7 +753,7 @@ var ChatPanel = ({
753
753
  },
754
754
  body: JSON.stringify({
755
755
  project_id: project_id != null ? project_id : "",
756
- conversation_id: conversation != null ? conversation : "",
756
+ conversation_id: currentConversation != null ? currentConversation : "",
757
757
  emailaddress,
758
758
  comment
759
759
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmasaservice-ui",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
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
@@ -824,7 +824,7 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
824
824
  },
825
825
  body: JSON.stringify({
826
826
  project_id: project_id ?? "",
827
- conversation_id: conversation ?? "",
827
+ conversation_id: currentConversation ?? "",
828
828
  emailaddress: emailaddress,
829
829
  comment: comment,
830
830
  }),