(mode)
| 1222 | } |
| 1223 | |
| 1224 | function updateSemiAutoActionsVisibility(mode) { |
| 1225 | const isSemiAuto = (mode || getBindMode()) === "semi_auto"; |
| 1226 | const loginBtn = document.getElementById("semi-login-gpt-btn"); |
| 1227 | const emailBtn = document.getElementById("semi-account-email-btn"); |
| 1228 | if (loginBtn) { |
| 1229 | loginBtn.style.display = isSemiAuto ? "" : "none"; |
| 1230 | } |
| 1231 | if (emailBtn) { |
| 1232 | emailBtn.style.display = isSemiAuto ? "" : "none"; |
| 1233 | } |
| 1234 | } |
| 1235 | |
| 1236 | function getSelectedAccountEmail() { |
| 1237 | const accountId = Number(document.getElementById("account-select")?.value || 0); |
no test coverage detected