Consolidate info into status box, remove chooser helper

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2025-12-29 15:16:16 +00:00
parent 5aec6d9a1b
commit 04efceee9b
+2 -2
View File
@@ -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';