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 7717c70 commit 1864607Copy full SHA for 1864607
components/dashboard/src/admin/ProjectsSearch.tsx
@@ -30,7 +30,7 @@ export function ProjectsSearch() {
30
const [searchResult, setSearchResult] = useState<AdminGetListResult<Project>>({ total: 0, rows: [] });
31
const [currentProject, setCurrentProject] = useState<Project | undefined>(undefined);
32
const [currentProjectOwner, setCurrentProjectOwner] = useState<string | undefined>("");
33
- const pageLength = 50;
+ const pageLength = 2;
34
const [currentPage, setCurrentPage] = useState(1);
35
const updateCurrentPage = (page: number) => {
36
setCurrentPage(page);
0 commit comments