+ + {anecdotes + .filter((anecdote) => anecdote.id === anecdoteIndex) + .map((anecdote) => ( + + {anecdote.stories.map(({ story, image_path }, index) => ( + + + + + ))} + + ))} +
+ + {characters + .filter((character) => character.character_id === characterIndex) + .map((character) => ( + + {character.character_stories.map( + ({ story, image_path }, index) => ( + + + + + ) + )} + + ))} +
+ + {events + .filter((event) => event.id === eventIndex) + .map((event) => ( + + {event.stories.map(({ story, image_path }, index) => ( + + + + + ))} + + ))} +
+ + {characters + .filter((character) => character.character_id === characterIndex) + .map((character) => ( + + {character.ex_stories.map(({ story, image_path }, index) => ( + + + + + ))} + + ))} +
+ + {lostArchives + .filter((lostArchive) => lostArchive.id === lostArchiveIndex) + .map((lostArchive) => ( + + + + + ))} +
{main_quest_season .filter((season, index) => index === seasonIndex) @@ -213,7 +212,6 @@ export default function DatabaseStories({
+ + {characters + .filter((character) => character.character_id === characterIndex) + .map((character) => ( + + {character.rod_stories.map(({ story, image_path }, index) => ( + + + + + ))} + + ))} +