From 51786b9235efc0d7db30aeabe54bbf3931a41240 Mon Sep 17 00:00:00 2001 From: Jiri Popek Date: Mon, 4 Aug 2025 13:31:41 +0200 Subject: [PATCH] Update MidiBindingView.tsx remove unnecessary () Signed-off-by: Jiri Popek --- vite/src/pipedal/MidiBindingView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite/src/pipedal/MidiBindingView.tsx b/vite/src/pipedal/MidiBindingView.tsx index f11b5c9..4c657c6 100644 --- a/vite/src/pipedal/MidiBindingView.tsx +++ b/vite/src/pipedal/MidiBindingView.tsx @@ -205,7 +205,7 @@ const MidiBindingView = for (let i = 0; i < 127; ++i) { result.push( - {i} ({Utility.midiNoteName(i)}) + {i} {Utility.midiNoteName(i)} ) }