This commit is contained in:
向明星 2024-11-29 12:43:54 +08:00
parent 20b7329795
commit cb200e5ce9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function Apply(props) {
function getList() {
const url = `/users/${username}/applied_projects.json`;
Axios.get(url,{page:page}).then(result=>{
Axios.get(url,{params:{page:page}}).then(result=>{
if(result){
setList(result.data.applied_projects);
setTotal(result.data.total_count);