From fbd69b09cfd935601b8c15a01def2a6949d854e5 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Fri, 3 Apr 2026 00:47:19 +0200 Subject: [PATCH] fix(web): use title case for all Friends page headers --- packages/web/src/components/chat/FriendsPage.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/web/src/components/chat/FriendsPage.tsx b/packages/web/src/components/chat/FriendsPage.tsx index cdd9ac54..17381371 100644 --- a/packages/web/src/components/chat/FriendsPage.tsx +++ b/packages/web/src/components/chat/FriendsPage.tsx @@ -89,7 +89,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { case 'online': return (
-

+

Online — {onlineFriends.length}

{onlineFriends.length === 0 ? ( @@ -109,7 +109,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { case 'all': return (
-

+

All Friends — {friends.length}

{friends.length === 0 ? ( @@ -129,7 +129,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { case 'pending': return (
-

+

Pending — {pendingIncoming.length + pendingOutgoing.length}

{[...pendingIncoming, ...pendingOutgoing].length === 0 ? ( @@ -249,7 +249,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { <> {activeFriends.length > 0 && (
-

+

Active — {activeFriends.length}

{activeFriends.map(f => renderActivityFriend(f))} @@ -257,7 +257,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { )} {idleFriends.length > 0 && (
-

+

Online — {idleFriends.length}

{idleFriends.map(f => renderActivityFriend(f))} @@ -265,7 +265,7 @@ export function FriendsPage({ mobile }: FriendsPageProps) { )} {offlineActivityFriends.length > 0 && (
-

+

Offline — {offlineActivityFriends.length}

{offlineActivityFriends.map(f => renderActivityFriend(f, true))} @@ -503,7 +503,7 @@ function AddFriendTab({ -

Find People

+

Find People

Search by username or use user@instance to add someone directly.

@@ -555,7 +555,7 @@ function AddFriendTab({ - Discover People + Discover People
)}