Skip to content

Commit

Permalink
fix type err
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Apr 16, 2020
1 parent eb22130 commit 39193de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const AllCases = React.memo<AllCasesProps>(({ userCanCrud }) => {
);
const refreshCases = useCallback(
(dataRefresh = true) => {
if (dataRefresh) refetchCases();
if (dataRefresh) refetchCases(filterOptions, queryParams);
fetchCasesStatus();
setSelectedCases([]);
setDeleteBulk([]);
Expand Down

0 comments on commit 39193de

Please sign in to comment.