This commit is contained in:
Igor Lobanov 2023-11-04 17:09:29 +01:00
parent d4e0d43a55
commit 8ca38a6fd9

View File

@ -46,9 +46,7 @@ export const AllAuthorsView = (props: AllAuthorsViewProps) => {
})
const byLetter = createMemo<{ [letter: string]: Author[] }>(() => {
return sortedAuthors()
.slice(0, 1)
.reduce(
return sortedAuthors().reduce(
(acc, author) => {
let letter = ''
if (author && author.name) {