summaryrefslogtreecommitdiffstats
path: root/ui/src/components/user.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/user.tsx')
-rw-r--r--ui/src/components/user.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx
index cccba852..bd883c32 100644
--- a/ui/src/components/user.tsx
+++ b/ui/src/components/user.tsx
@@ -241,7 +241,7 @@ export class User extends Component<any, UserState> {
<h5>Moderates</h5>
<ul class="list-unstyled">
{this.state.moderates.map(community =>
- <li><Link to={`/f/${community.community_name}`}>{community.community_name}</Link></li>
+ <li><Link to={`/c/${community.community_name}`}>{community.community_name}</Link></li>
)}
</ul>
</div>
@@ -259,7 +259,7 @@ export class User extends Component<any, UserState> {
<h5>Subscribed</h5>
<ul class="list-unstyled">
{this.state.follows.map(community =>
- <li><Link to={`/f/${community.community_name}`}>{community.community_name}</Link></li>
+ <li><Link to={`/c/${community.community_name}`}>{community.community_name}</Link></li>
)}
</ul>
</div>