diff --git a/app/app/components/chord-diagram/piano-keys.tsx b/app/app/components/chord-diagram/piano-keys.tsx index ac67eb0..d24534f 100644 --- a/app/app/components/chord-diagram/piano-keys.tsx +++ b/app/app/components/chord-diagram/piano-keys.tsx @@ -110,11 +110,12 @@ export function PianoKeys({ notes }: Props) {
)} @@ -138,6 +139,19 @@ export function PianoKeys({ notes }: Props) { ); })}
+ + {/* Active note names — unambiguous list including black keys */} +
+ {notes.map((note) => ( + + {note} + + ))} +
); }