export function getSundayDays(): DateTime[] {
  const mondayThisWeek = DateTime.utc().startOf('week');
  const sundayThisWeek = mondayThisWeek.plus({ days: 6 });

  return [sundayThisWeek];