Skip to content

Commit

Permalink
fix(frontend): remove trailing slash from activity endpoint (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sujanadh authored Dec 2, 2024
1 parent c595287 commit 41bb196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/views/ProjectSubmissions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const ProjectSubmissions = () => {

useEffect(() => {
dispatch(
MappedVsValidatedTaskService(`${import.meta.env.VITE_API_URL}/tasks/activity/?project_id=${projectId}&days=30`),
MappedVsValidatedTaskService(`${import.meta.env.VITE_API_URL}/tasks/activity?project_id=${projectId}&days=30`),
);
}, []);

Expand Down

0 comments on commit 41bb196

Please sign in to comment.