fix non pageables

This commit is contained in:
2023-10-29 18:35:37 +01:00
parent 0ea65867a8
commit 98c818f028
2 changed files with 177 additions and 152 deletions

View File

@@ -31,7 +31,9 @@ apiAxiosInstance.interceptors.response.use(async r => {
baseURL: '',
})).data);
}
r.data = results;
if (results) {
r.data = results;
}
return r;
})