Skip to content

Commit

Permalink
fix: associated projects in teams page
Browse files Browse the repository at this point in the history
  • Loading branch information
kaditya97 committed Nov 24, 2023
1 parent 5b895a4 commit 8ee9132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/teams.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export function TeamDetail() {
const [error, loading, team] = useFetch(`teams/${id}/`);
// eslint-disable-next-line
const [projectsError, projectsLoading, projects] = useFetch(
`projects/?teamId=${id}&omitMapResults=true`,
`projects/?teamId=${id}&omitMapResults=true&projectStatuses=PUBLISHED,DRAFT,ARCHIVED`,
id,
);
const [isMember, setIsMember] = useState(false);
Expand Down

0 comments on commit 8ee9132

Please sign in to comment.