diff --git a/keepassxc-browser/common/sites.js b/keepassxc-browser/common/sites.js index 754d3ab..4ffd2d5 100644 --- a/keepassxc-browser/common/sites.js +++ b/keepassxc-browser/common/sites.js @@ -207,6 +207,8 @@ kpxcSites.formSubmitButtonExceptionFound = function(form) { } else if (!form && document.location.href.includes('reddit.com/settings')) { // Reddit change password popup return $('.button[slot=primary-button]'); + } else if (form?.action === 'https://auth.openai.com/log-in/password') { + return form.querySelector('button[class*=_primary_]'); } return undefined;