Fixed: Clearing parse testing
This commit is contained in:
parent
9854884ed3
commit
dc302bfaa8
|
@ -36,7 +36,7 @@ function Parse() {
|
||||||
|
|
||||||
const onClearPress = useCallback(() => {
|
const onClearPress = useCallback(() => {
|
||||||
setTitle('');
|
setTitle('');
|
||||||
dispatch(fetch({ title: '' }));
|
dispatch(clear());
|
||||||
}, [setTitle, dispatch]);
|
}, [setTitle, dispatch]);
|
||||||
|
|
||||||
useEffect(
|
useEffect(
|
||||||
|
|
|
@ -43,7 +43,7 @@ function ParseModalContent(props: ParseModalContentProps) {
|
||||||
|
|
||||||
const onClearPress = useCallback(() => {
|
const onClearPress = useCallback(() => {
|
||||||
setTitle('');
|
setTitle('');
|
||||||
dispatch(fetch({ title: '' }));
|
dispatch(clear());
|
||||||
}, [setTitle, dispatch]);
|
}, [setTitle, dispatch]);
|
||||||
|
|
||||||
useEffect(
|
useEffect(
|
||||||
|
|
|
@ -55,6 +55,8 @@ export const actionHandlers = handleThunks({
|
||||||
}
|
}
|
||||||
|
|
||||||
parseTimeout = window.setTimeout(async () => {
|
parseTimeout = window.setTimeout(async () => {
|
||||||
|
dispatch(set({ section, isFetching: true }));
|
||||||
|
|
||||||
if (abortCurrentRequest) {
|
if (abortCurrentRequest) {
|
||||||
abortCurrentRequest();
|
abortCurrentRequest();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue