Skip to content

Commit

Permalink
fix online friends count
Browse files Browse the repository at this point in the history
  • Loading branch information
SupertigerDev committed Oct 14, 2024
1 parent bf50374 commit f089a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/home-drawer/HomeDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const OnlineFriendsHeader = () => {
return (
<div class={style.header}>
{t("inbox.drawer.onlineFriends", {
count: controller?.friends?.offlineFriends().length,
count: controller?.friends?.onlineFriends().length,
})}
<CustomLink decoration onclick={controller?.friends.toggleViewAllFriends}>
{t("inbox.drawer.viewAll")}
Expand Down

0 comments on commit f089a24

Please sign in to comment.