瀏覽代碼

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,
       }),
     });