@contentgrowth/llm-service 0.8.7 → 0.8.8

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.
@@ -453,7 +453,8 @@ var ChatInputArea = (0, import_react5.forwardRef)(({
453
453
  voiceConfigRef.current = voiceConfig;
454
454
  }, [voiceConfig]);
455
455
  const triggerChange = (0, import_react5.useCallback)((newValue) => {
456
- if (isControlled && onChangeRef.current && textareaRef.current) {
456
+ console.log("[ChatInputArea] triggerChange called:", { newValue, isControlled, hasOnChange: !!onChangeRef.current, hasTextarea: !!textareaRef.current });
457
+ if (isControlled && onChangeRef.current) {
457
458
  const syntheticEvent = {
458
459
  target: { value: newValue },
459
460
  currentTarget: { value: newValue }