fix: customize song structure

This commit is contained in:
2025-11-17 11:41:53 +01:00
parent 1a8fb9f1b5
commit 0dd9dbcfae
2 changed files with 6 additions and 3 deletions
@@ -150,7 +150,7 @@ const reorder = (list, from, to) => {
return next;
};
const clamp = (value, min, max) => Math.max(mn, Math.min(max, value));
const clamp = (value, min, max) => Math.max(min, Math.min(max, value));
const CustomizeSongStructure = ({ baseStructure = [], onChange }) => {
const [, setTooltip] = useGlobal("_tooltip");