diff --git a/packages/app/components/childListItem.component.tsx b/packages/app/components/childListItem.component.tsx index 80e76ff9..37cbf536 100644 --- a/packages/app/components/childListItem.component.tsx +++ b/packages/app/components/childListItem.component.tsx @@ -147,11 +147,14 @@ export const ChildListItem = ({ child, color }: ChildListItemProps) => { )} - - {translate('schedule.lunch')} - - {menu[moment().isoWeekday() - 1]?.description} - + {!menu[moment().isoWeekday() - 1] ? null : ( + <> + + {translate('schedule.lunch')} + + {menu[moment().isoWeekday() - 1]?.description} + + )}