@chatbotkit/react 0.2.0 → 0.3.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @chatbotkit/react
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - API improvements and bug fixes
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @chatbotkit/sdk@0.9.0
13
+
3
14
  ## 0.2.0
4
15
 
5
16
  ### Minor Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
+ [![ChatBotKit](https://img.shields.io/badge/credits-ChatBotKit-blue.svg)](https://chatbotkit.com)
1
2
  [![Follow on Twitter](https://img.shields.io/twitter/follow/chatbotkit.svg?logo=twitter)](https://twitter.com/chatbotkit)
2
3
  [![NPM](https://img.shields.io/npm/v/@chatbotkit/react.svg)](https://www.npmjs.com/package/@chatbotkit/react)
3
- [![ChatBotKit](https://img.shields.io/badge/credits-ChatBotKit-blue.svg)](https://chatbotkit.com)
4
4
 
5
5
  # ChatBotKit React SDK
6
6
 
@@ -211,7 +211,7 @@ function useConversationManager({ conversationId: _conversationId = '', token: _
211
211
  meta: {},
212
212
  },
213
213
  ]);
214
- if (text.length) {
214
+ if (tempText.length) {
215
215
  setThinking(false);
216
216
  }
217
217
  break;
@@ -209,7 +209,7 @@ export default function useConversationManager({ conversationId: _conversationId
209
209
  meta: {},
210
210
  },
211
211
  ]);
212
- if (text.length) {
212
+ if (tempText.length) {
213
213
  setThinking(false);
214
214
  }
215
215
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatbotkit/react",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "The fastest way to build advanced AI chat bots",
5
5
  "license": "ISC",
6
6
  "repository": {