Skip to content

Commit

Permalink
🐞 fix:merge
Browse files Browse the repository at this point in the history
  • Loading branch information
eleliauk committed Sep 2, 2024
2 parents c79b83c + a289894 commit d6d4a9f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/subpackages/profile/modules/components/History.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ const History: React.FC = memo(() => {
useEffect(() => {
const fetchData = async () => {
const res = await get(
`evaluations/list/mine?cur_evaluation_id=${0}&limit=${10}&status=${'Public'}`
`/evaluations/list/mine?cur_evaluation_id=${0}&limit=${10}&status=${'Public'}`
);
console.log(res.data);
setComments(res.data);
};
void fetchData();
Expand Down

0 comments on commit d6d4a9f

Please sign in to comment.