fixed issue with keyToStr function

This commit is contained in:
Clément Le Bihan
2023-03-20 00:19:36 +01:00
parent efede253dc
commit aa72f34a6c
3 changed files with 8 additions and 11 deletions
@@ -86,7 +86,7 @@ const PianoKeyComp = ({
alignItems="center"
>
{isNoteVisible(showNoteNames, isPressed, isHovered) && (
<Text {...textProps}>{keyToStr(pianoKey)}</Text>
<Text {...textProps}>{keyToStr(pianoKey, false)}</Text>
)}
</Box>
)}