Compare commits

...

1 commit

Author SHA1 Message Date
Dessalines
e106c316c1 Don't show your own subscribed on other users profiles.
- Fixes #402
2021-09-06 11:00:17 -04:00

View file

@ -251,7 +251,7 @@ export class Profile extends Component<any, ProfileState> {
{!this.state.loading && ( {!this.state.loading && (
<div class="col-12 col-md-4"> <div class="col-12 col-md-4">
{this.moderates()} {this.moderates()}
{UserService.Instance.myUserInfo && this.follows()} {this.isCurrentUser && this.follows()}
</div> </div>
)} )}
</div> </div>