🔥 remove author from booklog

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2023-12-29 17:04:56 +01:00
parent eff412247f
commit dad9c968ed
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6

View file

@ -33,7 +33,7 @@ function getEmojiStars(rating:any) {
{
booksByYear[year].map((book) => (
<div class="flex justify-between mb-2 break-words gap-2 borderbottom">
<p class="text-s">{book.title} - {book.author}</p>
<p class="text-s">{book.title}</p>
<p>{getEmojiStars(book.my_rating)}</p>
</div>
))