Skip to content

Commit

Permalink
fix: search conditions affected by pull-to-refresh (#4159)
Browse files Browse the repository at this point in the history
  • Loading branch information
freelylee authored Nov 29, 2024
1 parent 009f495 commit 2aa3795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/PagedMemoList/PagedMemoList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const PagedMemoList = (props: Props) => {
memoList.reset();
setState((state) => ({ ...state, nextPageToken: "" }));
fetchMoreMemos("");
}, []);
}, [props.filter, props.pageSize]);

useEffect(() => {
refreshList();
Expand Down

0 comments on commit 2aa3795

Please sign in to comment.