fix(29): correct memo syntax in JKSessionMetronome
Remove invalid arrow function syntax from memo-wrapped named function. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
af1c06302a
commit
cb73b3dcdd
|
|
@ -9,7 +9,7 @@ import computerIcon from '../../assets/img/instruments/icon_instrument_computer4
|
||||||
const JKSessionMetronome = memo(function JKSessionMetronome({
|
const JKSessionMetronome = memo(function JKSessionMetronome({
|
||||||
mixers,
|
mixers,
|
||||||
onClose
|
onClose
|
||||||
}) => {
|
}) {
|
||||||
const mixerHelper = useMixersContext();
|
const mixerHelper = useMixersContext();
|
||||||
const jamClient = useJamClient();
|
const jamClient = useJamClient();
|
||||||
const [showMenu, setShowMenu] = React.useState(false);
|
const [showMenu, setShowMenu] = React.useState(false);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue