The cave is... empty? Wtf.
}
+
+ {posts.map((post) => {
+ const { title, author } = post.data;
+ const targetAuthor = authorsMap.get(author);
+ let description = post.data.description ?? '';
+ if (description.length > maxDescCharCount) {
+ description = `${description
+ .slice(0, maxDescCharCount)
+ .trim()}...`;
+ }
+ return (
+
+
+
+ {post.data.title}
+
+ {description}
+
+
+
+ );
+ })}
+
+