diff --git a/scripts/popup-main.js b/scripts/popup-main.js
index 9535197..ac8671c 100644
--- a/scripts/popup-main.js
+++ b/scripts/popup-main.js
@@ -435,7 +435,7 @@ class PopupInterfaceManager {
return text.replace(/\n/g, '
').replace(/\*\*(.*?)\*\*/g, '$1');
}
- updatePageInfo(title, status) {
+ updatePageInfo(title, _status) {
const titleEl = document.getElementById('current-page-title');
if (titleEl) titleEl.textContent = title;
}
@@ -481,7 +481,7 @@ class PopupInterfaceManager {
const text = el.innerText;
navigator.clipboard.writeText(text).then(() => {
this.showSuccessToast('Copied to clipboard');
- }).catch(err => {
+ }).catch(_err => {
this.showErrorToast('Failed to copy');
});
}
@@ -504,7 +504,7 @@ class PopupInterfaceManager {
}
refreshAnalysisCards() {}
updateLanguageDetection() {}
- calculateReadabilityScore(text) { return { score: 80, level: 'Easy' }; }
+ calculateReadabilityScore(_text) { return { score: 80, level: 'Easy' }; }
displayAnalysisResult(type, data) {
const el = document.getElementById(`${type}-result`);
diff --git a/src/services/ai-service.js b/src/services/ai-service.js
index 28e7a27..a387ffd 100644
--- a/src/services/ai-service.js
+++ b/src/services/ai-service.js
@@ -254,7 +254,7 @@ export class AIService {
* @param {Object} requestParams - Request parameters
* @returns {Promise