fix: search conditions affected by pull-to-refresh (#4159)

pull/4164/head
Cheng 3 months ago committed by GitHub
parent 009f4956ac
commit 2aa3795e50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -49,7 +49,7 @@ const PagedMemoList = (props: Props) => {
memoList.reset();
setState((state) => ({ ...state, nextPageToken: "" }));
fetchMoreMemos("");
}, []);
}, [props.filter, props.pageSize]);
useEffect(() => {
refreshList();

Loading…
Cancel
Save