Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
yctercero committed Dec 21, 2020
1 parent 27b6c3f commit 15049eb
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,6 @@ export const ExceptionListsTable = React.memo<ExceptionListsTableProps>(
setFilters(formattedFilter);
}, []);

const handleSearchChange = useCallback(
(event: ChangeEvent<HTMLInputElement>) => {
const val = event.target.value;
handleSearch(val);
},
[handleSearch]
);

const paginationMemo = useMemo(
() => ({
pageIndex: pagination.page - 1,
Expand Down Expand Up @@ -228,7 +220,6 @@ export const ExceptionListsTable = React.memo<ExceptionListsTableProps>(
aria-label={i18n.EXCEPTIONS_LISTS_SEARCH_PLACEHOLDER}
placeholder={i18n.EXCEPTIONS_LISTS_SEARCH_PLACEHOLDER}
onSearch={handleSearch}
onChange={handleSearchChange}
disabled={initLoading}
incremental={false}
fullWidth
Expand Down

0 comments on commit 15049eb

Please sign in to comment.