fix(front) : pagination par defaut a 25 sur les repertoires (ERP-193)

This commit is contained in:
2026-06-18 15:53:25 +02:00
parent 5f2aa5334b
commit 29aa9b352d
8 changed files with 20 additions and 16 deletions
@@ -49,5 +49,6 @@ export interface Client {
* gerer.
*/
export function useClientsRepository() {
return usePaginatedList<Client>({ url: '/clients' })
// Pagination par defaut a 25 sur le repertoire (retour metier ERP-193).
return usePaginatedList<Client>({ url: '/clients', defaultItemsPerPage: 25 })
}