From 04efceee9bf77e2b0f0edbbac4f57cea65e6f00f Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 15:16:16 +0000 Subject: [PATCH] Consolidate info into status box, remove chooser helper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 822294b..d0499b6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -327,7 +327,7 @@ class MotifApp { this.displayResults(); this.setState('results'); - this.updateStatus('Pick a source to use.'); + this.updateStatus('Pick a midi source. Try another if it sounds bad, some work better than others.'); this.updateIOSAudioBanner(); } catch (error) { @@ -786,7 +786,7 @@ class MotifApp { // results - keep visible in all states except idle so user can pick a different source const hasResults = state === 'results' || state === 'selected' || state === 'generated'; this.resultsSection.classList.toggle('visible', hasResults); - this.chooseHelper.style.display = state === 'results' ? 'block' : 'none'; + this.chooseHelper.style.display = 'none'; // selected card const hasSelection = state === 'selected' || state === 'generated';