We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7295939 commit 3d2f514Copy full SHA for 3d2f514
components/collective-page/sections/Projects.tsx
@@ -75,7 +75,7 @@ function getContributeCardsScrollDistance(width) {
75
export default function Projects(props: ProjectsProps) {
76
const { collective, isAdmin } = props;
77
const intl = useIntl();
78
- const hasProjectsSection = (props.projects.length >= 0 && !collective.isActive) || isAdmin;
+ const hasProjectsSection = (props.projects.length >= 0 && collective.isActive) || isAdmin;
79
80
const [searchTerm, setSearchTerm] = React.useState('');
81
const deboucedSearchTerm = useDebounced(searchTerm, 1000);
0 commit comments