diff --git a/src/components/Views/Author/Author.tsx b/src/components/Views/Author/Author.tsx index b8414e40..905f3fc9 100644 --- a/src/components/Views/Author/Author.tsx +++ b/src/components/Views/Author/Author.tsx @@ -67,7 +67,7 @@ export const AuthorView = (props: Props) => { const { authors, profile, topics } = appdata setFollowers(myFollowers) setAuthor(profile) - setFollowing([...authors, ...topics]) + setFollowing([...(authors || []), ...(topics || [])]) } } }) @@ -260,7 +260,9 @@ export const AuthorView = (props: Props) => { - +