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';