Add a due date picker in TaskModal.jsx
Show it on the TaskCard with red color if overdue.
File: client/src/components/Board/TaskCard.jsx
Line: task.snippets[0].code — hardcoded to index 0!
If a task has 3 snippets, only the first shows.
Fix: map over task.snippets and show each one
with a tab switcher (Snippet 1 | Snippet 2 | Snippet 3)
Add a due date picker in TaskModal.jsx
Show it on the TaskCard with red color if overdue.
File: client/src/components/Board/TaskCard.jsx
Line: task.snippets[0].code — hardcoded to index 0!
If a task has 3 snippets, only the first shows.
Fix: map over task.snippets and show each one
with a tab switcher (Snippet 1 | Snippet 2 | Snippet 3)