Removes stray console.log()

This commit is contained in:
psychedelicious 2022-11-20 11:26:53 +11:00 committed by blessedcoolant
parent d4376ed240
commit 76e7e82f5e

View File

@ -113,7 +113,6 @@ export default function IAISlider(props: IAIFullSliderProps) {
}, [value, localInputValue, setLocalInputValue]);
const handleInputBlur = (e: FocusEvent<HTMLInputElement>) => {
console.log(numberInputMax);
const clamped = _.clamp(
isInteger ? Math.floor(Number(e.target.value)) : Number(e.target.value),
min,