chore: format

This commit is contained in:
Timothy Jaeryang Baek
2025-05-23 19:22:08 +04:00
parent e15ff8d9f6
commit 19b69fcb66
53 changed files with 54 additions and 54 deletions

View File

@@ -46,7 +46,7 @@
}
prompt = [
// Blockquote each line of the selected text
...selectedText.split('\n').map(line => `> ${line}`),
...selectedText.split('\n').map((line) => `> ${line}`),
'',
// Then your question
floatingInputValue
@@ -129,7 +129,7 @@
}
const quotedText = selectedText
.split('\n')
.map(line => `> ${line}`)
.map((line) => `> ${line}`)
.join('\n');
prompt = `${quotedText}\n\nExplain`;