diff --git a/src/components/Views/Author/Author.tsx b/src/components/Views/Author/Author.tsx index b59c3da1..78bcd4ac 100644 --- a/src/components/Views/Author/Author.tsx +++ b/src/components/Views/Author/Author.tsx @@ -69,7 +69,7 @@ export const AuthorView = (props: Props) => { const a = authorEntities()[props.authorSlug] setAuthor(a) console.debug('[AuthorView] preloaded author:', a) - } else if (props.authorSlug || (author()?.id && !author().stat)) { + } else if (props.authorSlug && !author().stat) { // load author const a = await loadAuthor({ slug: props.authorSlug, author_id: author()?.id }) setAuthor(a)