🐛 fix(floatComponent): fix typo in max variable assignment to remove unnecessary plus sign

This commit is contained in:
Cristhian Zanforlin Lousa 2023-09-08 10:46:09 -03:00
commit e6afd6704f

View file

@ -11,7 +11,7 @@ export default function FloatComponent({
}: FloatComponentType): JSX.Element {
const step = 0.1;
const min = -2;
const max = +2;
const max = 2;
// Clear component state
useEffect(() => {