@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.
@@ -412,7 +412,8 @@ var ChatInputArea = forwardRef(({
412
412
  voiceConfigRef.current = voiceConfig;
413
413
  }, [voiceConfig]);
414
414
  const triggerChange = useCallback3((newValue) => {
415
- if (isControlled && onChangeRef.current && textareaRef.current) {
415
+ console.log("[ChatInputArea] triggerChange called:", { newValue, isControlled, hasOnChange: !!onChangeRef.current, hasTextarea: !!textareaRef.current });
416
+ if (isControlled && onChangeRef.current) {
416
417
  const syntheticEvent = {
417
418
  target: { value: newValue },
418
419
  currentTarget: { value: newValue }