Skip to content

Commit

Permalink
[ReviewEntriesTable] Reduce max rows-per-page to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Oct 5, 2023
1 parent bb8d5b6 commit 27a00d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function getPageState(wordCount: number): PageState {
}

// Constants
const ROWS_PER_PAGE = [10, 50, 250];
const ROWS_PER_PAGE = [10, 50, 200];
const tableRef: React.RefObject<any> = React.createRef();

export default function ReviewEntriesTable(
Expand Down

0 comments on commit 27a00d6

Please sign in to comment.