From 18749aad548ace5545d0c48989661d0e031ec8d9 Mon Sep 17 00:00:00 2001 From: Arthur <72667180+bjornsondev@users.noreply.github.com> Date: Fri, 23 Apr 2021 19:43:11 +0600 Subject: [PATCH] fix(#1065): fixed incorrect current players count in match profile (#357) --- src/features/MatchSidePlaylists/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/MatchSidePlaylists/index.tsx b/src/features/MatchSidePlaylists/index.tsx index 172160f0..e7b79667 100644 --- a/src/features/MatchSidePlaylists/index.tsx +++ b/src/features/MatchSidePlaylists/index.tsx @@ -37,7 +37,7 @@ export const MatchSidePlaylists = ({ profile, selectedPlaylist, }: Props) => { - const playersCount = size(playlists.players.team1) + size(playlists.players.team2) + const playersCount = size(playlists.players.team1.list) + size(playlists.players.team2.list) return (