🐛 fix(floatComponent): fix typo in max variable assignment to remove unnecessary plus sign
This commit is contained in:
parent
ec7a5fdbd6
commit
e6afd6704f
1 changed files with 1 additions and 1 deletions
|
|
@ -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(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue