Skip to content

Commit 43353a5

Browse files
committed
fix: types
1 parent 003004d commit 43353a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app/components/Main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { type MyDataJson } from '../model/my-data-json';
2727
export default function Main() {
2828
const navigate = useNavigate();
2929
const [controller, setController] = useState(null as AbortController | null);
30-
const [timer, setTimer] = useState(undefined as undefined | NodeJS.Timer);
30+
const [timer, setTimer] = useState(undefined as undefined | NodeJS.Timeout);
3131
const [value, setValue] = useState(0);
3232
const [first, setFirst] = useState(true);
3333
const [rows, setRows] = useState([] as TableDataRow[]);

0 commit comments

Comments
 (0)