We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d78db commit d39976fCopy full SHA for d39976f
content.js
@@ -29,9 +29,10 @@ function addDiffButton() {
29
{ type: "fetchDiff", url: diffUrl },
30
(response) => {
31
if (response && response.success && response.data) {
32
- const combinedText = `PR Title: ${title}\n\n${
33
- description ? `PR Description: ${description}\n\n` : ""
34
- }Review Language: ${language}\n\nDiff:\n${response.data}`;
+ const combinedText = `Please review this PR in ${language} language. This review must be provided in ${language}. PR Title: ${title}\n\n${
+ description ? `PR Description: ${description}` : ""
+ } Diff:${response.data}`;
35
+
36
showButtonSuccess(button);
37
chrome.runtime.sendMessage({
38
type: "openChatGPT",
0 commit comments