diff --git a/components/flow.tsx b/components/flow.tsx
index f1bddb7b..a4b2c3f6 100644
--- a/components/flow.tsx
+++ b/components/flow.tsx
@@ -135,26 +135,26 @@ export function Flow() {
) : tasks.length === 0 ? (
No tasks found
) : (
-
+
{tasks.map((task) => (
-
+
{task.headline}
-
-
-
{task.projectName}
+
+
+ {task.projectName}
{task.dateToFinish && task.dateToFinish !== '0000-00-00 00:00:00' && (
-
+
Due: {new Date(task.dateToFinish).toLocaleDateString()}
)}