From 80aa65d7fad782a40715b80dc74fcd23542c05ee Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Tue, 27 Jan 2026 21:38:52 -0800 Subject: [PATCH] Fix populateBusinessSelect - remove continueBtn references Co-Authored-By: Claude Opus 4.5 --- portal/login.html | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/portal/login.html b/portal/login.html index cade984..2b458ac 100644 --- a/portal/login.html +++ b/portal/login.html @@ -366,13 +366,14 @@ const select = document.getElementById('businessSelect'); if (this.businesses.length === 0) { - select.innerHTML = ''; - select.disabled = true; - document.getElementById('continueBtn').disabled = true; + // No businesses - add wizard option only + select.innerHTML = ''; + const wizardOption = document.createElement('option'); + wizardOption.value = 'NEW_WIZARD'; + wizardOption.textContent = '✨ Create New Business'; + select.appendChild(wizardOption); } else { select.innerHTML = ''; - select.disabled = false; - document.getElementById('continueBtn').disabled = false; this.businesses.forEach(biz => { const option = document.createElement('option'); @@ -385,8 +386,6 @@ const wizardOption = document.createElement('option'); wizardOption.value = 'NEW_WIZARD'; wizardOption.textContent = '✨ New Business Wizard'; - wizardOption.style.fontWeight = 'bold'; - wizardOption.style.color = 'var(--primary)'; select.appendChild(wizardOption); } },