diff --git a/src/routes/author/(all-authors).tsx b/src/routes/author/(all-authors).tsx index b861f755..739cd092 100644 --- a/src/routes/author/(all-authors).tsx +++ b/src/routes/author/(all-authors).tsx @@ -41,7 +41,7 @@ export default function AllAuthorsPage(props: RouteSectionProps) if (props.data) return props.data const authorsAllFetcher = loadAuthorsAll() return { - authors: authorsSorted() || await authorsAllFetcher(), + authors: authorsSorted() || (await authorsAllFetcher()), authorsByFollowers: await fetchAuthorsWithStat(10, 'followers'), authorsByShouts: await fetchAuthorsWithStat(10, 'shouts') } as AllAuthorsData