Skip to content

Commit

Permalink
fix: no need to check updatedat for submission count
Browse files Browse the repository at this point in the history
  • Loading branch information
Sujanadh committed Sep 10, 2024
1 parent 755c0e1 commit 043bbe4
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 @@ -20,7 +20,7 @@ const ProjectSubmissions = () => {
const state = useAppSelector((state) => state.project);
const projectInfo = useAppSelector((state) => state.project.projectInfo);
const entityList = useAppSelector((state) => state.project.entityOsmMap);
const updatedEntities = entityList?.filter((entity) => entity?.updated_at && entity?.status > 1);
const updatedEntities = entityList?.filter((entity) => entity?.status > 1);

//Fetch project for the first time
useEffect(() => {
Expand Down

0 comments on commit 043bbe4

Please sign in to comment.