From 018c10c9193082237b5f8036e215a40325591acb Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 6 Sep 2021 11:03:18 -0400 Subject: [PATCH] Don't show your own subscribed on other users profiles. (#405) - Fixes #402 --- src/shared/components/person/profile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/person/profile.tsx b/src/shared/components/person/profile.tsx index 815f2fd..591b503 100644 --- a/src/shared/components/person/profile.tsx +++ b/src/shared/components/person/profile.tsx @@ -251,7 +251,7 @@ export class Profile extends Component { {!this.state.loading && (
{this.moderates()} - {UserService.Instance.myUserInfo && this.follows()} + {this.isCurrentUser && this.follows()}
)} -- 2.44.1