소스 검색

If selectedText.length is 0, undefined judgment is made.

Shun Miyazawa 1 년 전
부모
커밋
8ca6597edf
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      apps/app/src/features/openai/client/services/editor-assistant.ts

+ 3 - 1
apps/app/src/features/openai/client/services/editor-assistant.ts

@@ -119,7 +119,9 @@ export const useEditorAssistant: UseEditorAssistant = () => {
       body: JSON.stringify({
         threadId,
         userMessage,
-        markdown: selectedText,
+        markdown: selectedText != null && selectedText.length !== 0
+          ? selectedText
+          : undefined,
       }),
     });