From ce03e74206f8ca34f5f7999851d10844e9058de6 Mon Sep 17 00:00:00 2001 From: cvancau Date: Sun, 9 Aug 2026 19:35:40 +0200 Subject: [PATCH] Actualiser src/features/menu/index.jsx --- src/features/menu/index.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/features/menu/index.jsx b/src/features/menu/index.jsx index e179b95..63806ee 100644 --- a/src/features/menu/index.jsx +++ b/src/features/menu/index.jsx @@ -56,7 +56,6 @@ export default function Menu() { registerPatchReceiver((rawSysExBytes) => { try { console.log('[MIDI] longueur SysEx:', rawSysExBytes.length); - console.log( '[MIDI] RAW:', Array.from(rawSysExBytes) @@ -104,6 +103,9 @@ export default function Menu() { useEffect(() => { if (file) { dispatch(parameterFromFile(return_store_from_file(file))); + if (!parsedStoreData.patch.name.trim()) { + parsedStoreData.patch.name = '------------'; + } } }, [file, dispatch]);