diff --git a/src/main.ts b/src/main.ts index e51f67c..5c1d0ce 100644 --- a/src/main.ts +++ b/src/main.ts @@ -292,7 +292,11 @@ class MotifApp { private async handleSearch(): Promise { const songName = this.songInput.value.trim(); - if (!songName) return; + if (!songName) { + this.updateStatus('Enter a song name to search.'); + this.songInput.focus(); + return; + } // Stop any playing Motif audio this.handleMotifStop();