Skip to content

Commit

Permalink
[ReviewEntriesTable] Reduce max rows-per-page to 200 (#2680)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Oct 10, 2023
1 parent 4b4eca7 commit 39518a9
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 39518a9

Please sign in to comment.