fix: pagination for apiEndpoints table (#20859)

This commit is contained in:
Pranita Fulsundar 2025-04-16 16:30:08 +05:30 committed by GitHub
parent c092735fce
commit 6484401eef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -167,8 +167,8 @@ function APIEndpointsTab({
); );
useEffect(() => { useEffect(() => {
getAPICollectionEndpoints(); getAPICollectionEndpoints({ paging: { limit: pageSize } });
}, [apiCollection]); }, [apiCollection, pageSize]);
return ( return (
<TableAntd <TableAntd