fixed settings page sorting by list order

This commit was merged in pull request #81.
This commit is contained in:
victorAnumudu
2025-09-04 17:46:47 +01:00
parent 599e8a7715
commit f66f92c58d
6 changed files with 37 additions and 10 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ const postAuxEnd = (path, postData, media=false) => {
return axios.post(`${basePath}${path}`, postData).then(res => {
return res
}).catch(err => {
throw new Error(err.response.data.msg);
// console.log('res', err.response.data)
throw new Error(err.response.data.error_message);
})
}