Feat: By default, 50 records are displayed per page. #3221 (#9867)

### What problem does this PR solve?

Feat: By default, 50 records are displayed per page. #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-09-02 14:12:41 +08:00
committed by GitHub
parent 757c5376be
commit c2567844ea
3 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ interface SearchListResponse {
export const useFetchSearchList = (params?: SearchListParams) => {
const [searchParams, setSearchParams] = useState<SearchListParams>({
page: 1,
page_size: 10,
page_size: 50,
...params,
});