nicolium: fix theme settings overriding each other

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-04-08 22:45:34 +00:00
parent f31a4ef9aa
commit 915c0b3795
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ const Slider: React.FC<ISlider> = ({
}
}
}, 60),
[node.current],
[node.current, onChange],
);
const handleKeyDown: React.KeyboardEventHandler<HTMLSpanElement> = (event) => {

View File

@@ -66,7 +66,7 @@ const StepSlider: React.FC<IStepSlider> = ({
}
}
}, 60),
[node.current],
[node.current, onChange],
);
const handleKeyDown: React.KeyboardEventHandler<HTMLSpanElement> = (event) => {