Skip to content

Commit ce8cd9c

Browse files
committed
fix: remove 0 placeholder
1 parent 2d4340b commit ce8cd9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/components/form/InputBn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function getMinMax(type: string): [bigint, bigint] {
3636
}
3737

3838
export function InputBn({ onChange, typeDef: { type } }: Props): React.ReactElement {
39-
const [displayValue, setDisplayValue] = useState('0');
39+
const [displayValue, setDisplayValue] = useState('');
4040
const [min, max] = getMinMax(type);
4141

4242
const handleChange = useCallback(

0 commit comments

Comments
 (0)