Update src/components/NumberInput/NumberInput.tsx

Co-authored-by: Timothy Z. <timothy@stremio.com>
This commit is contained in:
Botsy 2025-02-12 15:34:07 +02:00 committed by GitHub
parent 6274115f8f
commit d7974babdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -93,7 +93,7 @@ const NumberInput = forwardRef<HTMLInputElement, Props>(({ defaultValue, showBut
{props.label && <div className={styles['label']}>{props.label}</div>}
<input
ref={ref}
type="number"
type={'number'}
tabIndex={0}
value={value}
{...props}