Lint all the things

This commit is contained in:
Dave
2025-08-19 16:23:29 -04:00
parent f6d6b548be
commit 33fb60ca1a
640 changed files with 2129 additions and 3927 deletions

View File

@@ -1,7 +1,7 @@
import { InputNumber, Popover } from "antd";
import React, { forwardRef, useEffect, useRef, useState } from "react";
import { forwardRef, useEffect, useRef, useState } from "react";
const FormInputNUmberCalculator = ({ value: formValue, onChange: formOnChange, ...restProps }, refProp) => {
const FormInputNUmberCalculator = ({ value: formValue, onChange: formOnChange, ...restProps }) => {
const [value, setValue] = useState(formValue);
const [total, setTotal] = useState(0);
const [history, setHistory] = useState([]);
@@ -97,7 +97,7 @@ const FormInputNUmberCalculator = ({ value: formValue, onChange: formOnChange, .
value={value}
defaultValue={value}
onKeyDown={handleKeyDown}
onBlur={(e) => setHistory([])}
onBlur={() => setHistory([])}
{...restProps}
/>
</Popover>