summaryrefslogtreecommitdiff
path: root/source/features/user-profile-follower-badge.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/user-profile-follower-badge.tsx')
-rw-r--r--source/features/user-profile-follower-badge.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/user-profile-follower-badge.tsx b/source/features/user-profile-follower-badge.tsx
index f502fe8a..05915b83 100644
--- a/source/features/user-profile-follower-badge.tsx
+++ b/source/features/user-profile-follower-badge.tsx
@@ -21,7 +21,7 @@ const doesUserFollow = cache.function(async (userA: string, userB: string): Prom
async function init(): Promise<void> {
if (await doesUserFollow(getCleanPathname(), getUsername()!)) {
select('.js-profile-editable-area [href$="?tab=following"]')!.after(
- <span className="color-text-secondary color-fg-muted"> · Follows you</span>,
+ <span className="color-fg-muted"> · Follows you</span>,
);
}
}