From 8de9fe0e87b7fae6aabbeb41d8a6d0a1da99294f Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Wed, 11 Feb 2026 07:32:58 -0500 Subject: [PATCH] add due dates --- source/app.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/app.tsx b/source/app.tsx index 3422d34..6e9108a 100644 --- a/source/app.tsx +++ b/source/app.tsx @@ -108,6 +108,14 @@ export default function App() { ) : ( '' )} + {task.due?.date ? ( + + {' '} + {task.due.date} + + ) : ( + '' + )} ))} {message && {message}} -- 2.51.2