From e106c316c132809286e433707738d36624faabfd Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 6 Sep 2021 11:00:17 -0400 Subject: [PATCH] Don't show your own subscribed on other users profiles. - 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 815f2fd3..591b5036 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()}
)}