fix: Drops participants count white background. (#12416)

* fix: Drops participants count white background.

Currently, it is white background with white icon.

* squash: Drop unused import.
This commit is contained in:
Дамян Минков 2022-10-19 11:42:28 -05:00 committed by GitHub
parent ff29196f3a
commit 601e21ffcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ import type { Dispatch } from 'redux';
import { openDialog } from '../../../base/dialog';
import { IconUserGroups } from '../../../base/icons';
import { Label } from '../../../base/label';
import { COLORS } from '../../../base/label/constants';
import { getParticipantCount } from '../../../base/participants';
import { connect } from '../../../base/redux';
import { SpeakerStats } from '../../../speaker-stats';
@ -87,7 +86,6 @@ class ParticipantsCount extends PureComponent<Props> {
return (
<Label
color = { COLORS.white }
icon = { IconUserGroups }
onClick = { !this.props._isSpeakerStatsDisabled && this._onClick }
text = { count } />