mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +03:00
Updates
This commit is contained in:
parent
5712dd78f9
commit
b0030a46f5
|
@ -70,7 +70,7 @@ interface Props
|
||||||
}
|
}
|
||||||
|
|
||||||
function DemoApp(props: Props) {
|
function DemoApp(props: Props) {
|
||||||
const timeout = useRef<number | undefined>();
|
const timeout = useRef<number | undefined>(undefined);
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
const options = getOptions(location);
|
const options = getOptions(location);
|
||||||
|
|
|
@ -142,7 +142,7 @@ interface Props
|
||||||
}
|
}
|
||||||
|
|
||||||
function DemoApp(props: Props) {
|
function DemoApp(props: Props) {
|
||||||
const timeout = useRef<number | undefined>();
|
const timeout = useRef<number | undefined>(undefined);
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user