From 6fddb140cc33a751e3c5e1772cf90e8fa3be4011 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 15:05:50 +0000 Subject: [PATCH] Remove redundant info box from selected card MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Consolidated messaging - the chooser helper already explains MIDI selection 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 4 ---- src/main.ts | 3 --- 2 files changed, 7 deletions(-) diff --git a/index.html b/index.html index f0b7606..03019db 100644 --- a/index.html +++ b/index.html @@ -1177,10 +1177,6 @@

No source selected

Search for a song, then choose a source to use.
- -
- Some MIDI files work better than others. If the result sounds off, try another source. -
diff --git a/src/main.ts b/src/main.ts index 859f4d1..0cab45d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -25,7 +25,6 @@ class MotifApp { private selectedTitle!: HTMLElement; private selectedMeta!: HTMLElement; private selectedDetails!: HTMLElement; - private selectedExpectation!: HTMLElement; private preGenActions!: HTMLElement; private preGenSupport!: HTMLElement; private generatedBlock!: HTMLElement; @@ -116,7 +115,6 @@ class MotifApp { this.selectedTitle = document.getElementById('selectedTitle')!; this.selectedMeta = document.getElementById('selectedMeta')!; this.selectedDetails = document.getElementById('selectedDetails')!; - this.selectedExpectation = document.getElementById('selectedExpectation')!; this.preGenActions = document.getElementById('preGenActions')!; this.preGenSupport = document.getElementById('preGenSupport')!; this.generatedBlock = document.getElementById('generatedBlock')!; @@ -830,7 +828,6 @@ class MotifApp { // Selected pre-generation content const showPreGen = state === 'selected'; - this.selectedExpectation.style.display = showPreGen ? 'block' : 'none'; this.preGenActions.style.display = showPreGen ? 'block' : 'none'; this.preGenSupport.style.display = showPreGen ? 'flex' : 'none'; this.detailsToggle.style.display = showPreGen ? 'block' : 'none';