diff --git a/src/components/Forms/CreateCollectionForm/ManageProblems.tsx b/src/components/Forms/CreateCollectionForm/ManageProblems.tsx index 1d8056c..710a6b5 100644 --- a/src/components/Forms/CreateCollectionForm/ManageProblems.tsx +++ b/src/components/Forms/CreateCollectionForm/ManageProblems.tsx @@ -84,7 +84,7 @@ const ManageProblems = ({ })) ); - return ProblemService.getAllAsCreator(accountId,{start:10}) + return ProblemService.getAllAsCreator(accountId) }).then((response) => { setAllProblems( transformProblemModel2ProblemHashedTable(response.data.problems) diff --git a/src/views/My/Problems/ProblemStatistic.tsx b/src/views/My/Problems/ProblemStatistic.tsx index b1c9294..5df7f92 100644 --- a/src/views/My/Problems/ProblemStatistic.tsx +++ b/src/views/My/Problems/ProblemStatistic.tsx @@ -22,7 +22,6 @@ const ProblemStatistic = () => { ProblemService.get(accountId, problemId) .then((response) => { - console.log("problem", response.data); setProblem(response.data); return SubmissionService.getByCreatorProblem( accountId,