Skip to content

Commit

Permalink
Removed potentially unneeded eslint-disable-line no-redeclare
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlui committed Nov 13, 2024
1 parent ada9c41 commit 7e1d9a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chatgpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ localStorage.alertQueue = JSON.stringify([]);
localStorage.notifyProps = JSON.stringify({ queue: { topRight: [], bottomRight: [], bottomLeft: [], topLeft: [] }});

// Define chatgpt API
const chatgpt = { // eslint-disable-line no-redeclare
const chatgpt = {
openAIaccessToken: {}, endpoints: {
assets: 'https://cdn.jsdelivr.net/gh/KudoAI/chatgpt.js',
openAI: {
Expand Down
2 changes: 1 addition & 1 deletion starters/chrome/extension/lib/chatgpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ localStorage.alertQueue = JSON.stringify([]);
localStorage.notifyProps = JSON.stringify({ queue: { topRight: [], bottomRight: [], bottomLeft: [], topLeft: [] }});

// Define chatgpt API
const chatgpt = { // eslint-disable-line no-redeclare
const chatgpt = {
openAIaccessToken: {}, endpoints: {
assets: 'https://cdn.jsdelivr.net/gh/KudoAI/chatgpt.js',
openAI: {
Expand Down

0 comments on commit 7e1d9a6

Please sign in to comment.