File: client/src/components/Board/TaskCard.jsx When a task is in Done column, the title looks exactly same as other columns. Fix: className={`text-sm font-medium ${task.status === 'done' ? 'line-through opacity-50' : ''}`} 1 line change!!
File: client/src/components/Board/TaskCard.jsx
When a task is in Done column, the title looks
exactly same as other columns.
Fix:
className={
text-sm font-medium ${task.status === 'done' ? 'line-through opacity-50' : ''}}1 line change!!