diff --git a/app/Services/Families/FamilyTreeService.php b/app/Services/Families/FamilyTreeService.php index a67caeae44..a3b09fe794 100644 --- a/app/Services/Families/FamilyTreeService.php +++ b/app/Services/Families/FamilyTreeService.php @@ -179,8 +179,8 @@ protected function formatEntity(Entity $entity): array 'url' => $entity->url(), 'thumb' => Avatar::entity($entity)->size(40)->fallback()->thumbnail(), 'is_dead' => (bool)$entity->character->is_dead, - 'death' => $birth, - 'birth' => $death, + 'death' => $death, + 'birth' => $birth, 'tags' => $tags, ]; }