@tinkrapp/widget 1.1.2 → 1.1.3

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/react.js CHANGED
@@ -1974,7 +1974,9 @@ function AssistantRuntimeWrapper({
1974
1974
  function WidgetProvider({
1975
1975
  config,
1976
1976
  children,
1977
- autoInitialize = true
1977
+ // Legacy client initialization - disabled by default as the new assistant-ui
1978
+ // runtime handles session/thread management via the thread list adapter
1979
+ autoInitialize = false
1978
1980
  }) {
1979
1981
  const [userId] = useState(() => config.userId || generateUserId());
1980
1982
  const [client] = useState(() => new WidgetClient(config));