Remove unused sections

This commit is contained in:
Kasper Juul Hermansen 2021-11-18 23:20:44 +01:00
parent 6c161843e5
commit 2506324cfd
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -31,7 +31,10 @@ const HomePage = () => {
</div> </div>
)} )}
{sections && {sections &&
sections.map((section) => ( sections.map(
(section) =>
groupedTodos[section].filter((t) => t.status !== true).length !==
0 && (
<div key={section} className="space-y-2"> <div key={section} className="space-y-2">
<ProjectsHeading title={section} /> <ProjectsHeading title={section} />
<TodoList <TodoList
@ -41,7 +44,8 @@ const HomePage = () => {
hideProject hideProject
/> />
</div> </div>
))} )
)}
{data && data.length === 0 && ( {data && data.length === 0 && (
<div className="space-y-4"> <div className="space-y-4">
<PageHeading title="You're done!" /> <PageHeading title="You're done!" />