This commit is contained in:
Nathan Bierema 2025-05-31 10:04:35 -04:00
parent 5712dd78f9
commit b0030a46f5
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ interface Props
}
function DemoApp(props: Props) {
const timeout = useRef<number | undefined>();
const timeout = useRef<number | undefined>(undefined);
const location = useLocation();
const options = getOptions(location);

View File

@ -142,7 +142,7 @@ interface Props
}
function DemoApp(props: Props) {
const timeout = useRef<number | undefined>();
const timeout = useRef<number | undefined>(undefined);
const location = useLocation();
const navigate = useNavigate();