We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dcbfba commit cc33f27Copy full SHA for cc33f27
src/ui/layouts/common/Table/index.tsx
@@ -34,7 +34,7 @@ export interface TableProps {
34
trOnClick?: (arg: any) => void;
35
}
36
37
-const ITEMS_PER_PAGE = 10;
+const ITEMS_PER_PAGE = parseInt(process.env.REACT_APP_ITEMS_PER_PAGE as string);
38
39
export const Table: React.FC<TableProps> = ({
40
headerCols,
0 commit comments