diff --git a/frontend/src/Components/AllTimeReportsInProject.tsx b/frontend/src/Components/AllTimeReportsInProject.tsx index fcd0f8f..14d3af9 100644 --- a/frontend/src/Components/AllTimeReportsInProject.tsx +++ b/frontend/src/Components/AllTimeReportsInProject.tsx @@ -30,7 +30,7 @@ function AllTimeReportsInProject(): JSX.Element { // Call getProjects when the component mounts useEffect(() => { void getWeeklyReports(); - }); + }, []); return ( <> diff --git a/testing.py b/testing.py index 384d7ce..b8fbe43 100644 --- a/testing.py +++ b/testing.py @@ -274,7 +274,7 @@ def test_sign_report(): submitReportPath, json={ "projectName": projectName, - "week": 1, + "week": 2, "developmentTime": 10, "meetingTime": 5, "adminTime": 5,