We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a2f582 commit 5d1c35eCopy full SHA for 5d1c35e
1 file changed
src/pages/ReminderPage.tsx
@@ -152,7 +152,7 @@ export default function ReminderPage({ showCompleted }: ReminderProps) {
152
sx={{ textDecoration: r.completed ? 'line-through' : 'none', transition: 'transform 0.2s' }}
153
/>
154
{
155
- r.notes.length > 0 && (
+ r.notes && r.notes.length > 0 && (
156
<Typography variant="body2">{r.notes}</Typography>
157
)
158
}
0 commit comments