Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
2nthony committed Nov 25, 2024
1 parent 27c53c7 commit c1d484c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/src/pages/Proposals/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ const Proposals = () => {
const { proposals, total, loading } = useListData();

const doFetchProposal = useCallback(
(options) => {
(options = {}) => {
let filterData = getFilterData();

const params = {
Expand All @@ -213,7 +213,7 @@ const Proposals = () => {
);
} else {
if (gov) {
filterData = { ...filterData, gov };
params.gov = gov;
}
dispatch(fetchProposals(tablePage - 1, pageSize, params, options));
}
Expand Down

0 comments on commit c1d484c

Please sign in to comment.