Skip to content

Commit

Permalink
Deleted test logs ↞ [auto-sync from https://github.com/adamlui/ai-web…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Jan 31, 2025
1 parent 32cf779 commit de9ac91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chromium/extension/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
const btns = {} ; btnTypesToCheck.forEach(type => btns[type] = chatgpt[`get${type}Btn`]())
Object.entries(btns).forEach(([btnType, btn]) => {
if (!btn || btnType == 'Scroll' && ( !config.autoScroll || !chatgpt.getStopBtn() )) return
btn.click() ; console.log(btnType + ' clicked')
btn.click()
if (btnType == 'Continue') {
continueBtnClicked = true
notify(chrome.i18n.getMessage('notif_chatAutoContinued'), 'bottom-right')
Expand Down
2 changes: 1 addition & 1 deletion firefox/extension/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
const btns = {} ; btnTypesToCheck.forEach(type => btns[type] = chatgpt[`get${type}Btn`]())
Object.entries(btns).forEach(([btnType, btn]) => {
if (!btn || btnType == 'Scroll' && ( !config.autoScroll || !chatgpt.getStopBtn() )) return
btn.click() ; console.log(btnType + ' clicked')
btn.click()
if (btnType == 'Continue') {
continueBtnClicked = true
notify(chrome.i18n.getMessage('notif_chatAutoContinued'), 'bottom-right')
Expand Down

0 comments on commit de9ac91

Please sign in to comment.