fix(#1065): fixed incorrect current players count in match profile (#357)

keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Arthur 5 years ago committed by GitHub
parent 2292b63430
commit 18749aad54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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 (
<Wrapper>

Loading…
Cancel
Save