Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Nov 6, 2023
1 parent fabf7ea commit fa09ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/app/mirrors/edit/[mirrorId]/cdc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const SnapshotStatusTable = ({ status }: SnapshotStatusProps) => {
if (searchQuery.length == 0) {
setSnapshotRows(status.clones.map(summarizeTableClone));
}
}, [searchQuery]);
}, [searchQuery, status.clones]);
return (
<Table
title={<Label variant='headline'>Initial Copy</Label>}
Expand Down
2 changes: 1 addition & 1 deletion ui/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const SearchBar = (props: SearchProps) => {
if (searchQuery.length == 0) {
props.setItems(props.allItems);
}
}, [searchQuery]);
}, [searchQuery, props]);

return (
<SearchField
Expand Down

0 comments on commit fa09ed7

Please sign in to comment.