This commit is contained in:
Ayman Al-Suleihi 2026-01-28 16:05:06 +05:00 committed by GitHub
commit 86ed0bb0a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,7 +56,7 @@ export function DataGrid({
(page: number) => {
router.push(updateParams({ search, page }));
},
[search],
[router, updateParams, search],
);
const child = data ? (typeof children === 'function' ? children(data) : children) : null;