diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index f8dcc344..662aa1a9 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -99,16 +99,16 @@ export const AuthorCard = (props: Props) => {
const followButtonText = () => {
if (isSubscribing()) {
return t('subscribing...')
+ } else if (subscribed()) {
+ return (
+ <>
+ {t('Following')}
+ {t('Unfollow')}
+ >
+ )
+ } else {
+ return t('Follow')
}
-
- return !subscribed() ? (
- t('Follow')
- ) : (
- <>
- {t('Following')}
- {t('Unfollow')}
- >
- )
}
return (