Skip to content

Commit

Permalink
fix: empty projects state (#1379)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyesp authored Oct 31, 2023
1 parent 0a13eee commit 2f2dcbe
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/pages/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,14 @@ export default function ProjectsPage() {
<RequestBanner />
</NotMobile>
</div>
<div>
{displayableProjects && (
<CurrentProjectsList
projects={displayableProjects}
selectedType={type}
selectedSubtype={subtype}
status={toProjectStatus(status)}
/>
)}
</div>
{displayableProjects && (
<CurrentProjectsList
projects={displayableProjects}
selectedType={type}
selectedSubtype={subtype}
status={toProjectStatus(status)}
/>
)}
</div>
</WiderContainer>
)}
Expand Down

0 comments on commit 2f2dcbe

Please sign in to comment.