🐛 fix: Increase pagination size limit for server and node lists to improve data retrieval

This commit is contained in:
web
2025-09-03 09:16:36 -07:00
parent 10250d9e34
commit 7c0a312163
4 changed files with 30 additions and 10 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ export default function Page() {
queryFn: async () => {
const { data } = await getSubscribeList({
page: 1,
size: 9999,
size: 999999999,
});
return data.data?.list as API.SubscribeGroup[];
},