fix(dial-in) Fix warning (#12571)

Only show warning if the feature is enabled
This commit is contained in:
Robert Pintilii 2022-11-16 12:14:58 +02:00 committed by GitHub
parent 0c373e105b
commit 48efe36cdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ function AddPeopleDialog({
&& <DialInSection phoneNumber = { _phoneNumber } />
}
{
!_dialInVisible && _isVpaasMeeting && <DialInLimit />
!_phoneNumber && _dialInVisible && _isVpaasMeeting && <DialInLimit />
}
</div>
</Dialog>