Skip to content

Commit

Permalink
Use Join Lemmy hostname as link text in footer (#1737)
Browse files Browse the repository at this point in the history
* Use Join Lemmy URL as link text in footer when there's a user

I think it makes sense to keep a link to the Join Lemmy website even
though there's a logged in user. There's plenty of other useful info on
that website beyond just joining Lemmy.

Using the URL avoids the phrase "Join Lemmy" and should indicate that
you're navigating to said website.

* Extract hostname from the existing URL constant instead

* Just use hostname of join lemmy site in footer

To maintain consistency whether logged in or not.
  • Loading branch information
dnswrsrx authored Jul 5, 2023
1 parent 53348d5 commit 3a89454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/components/app/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class Footer extends Component<FooterProps, any> {
</li>
<li className="nav-item">
<a className="nav-link" href={joinLemmyUrl}>
{I18NextService.i18n.t("join_lemmy")}
{new URL(joinLemmyUrl).hostname}
</a>
</li>
</ul>
Expand Down

0 comments on commit 3a89454

Please sign in to comment.