chore(deps) Upgrade TS (#13331)

Upgrade typescript related packages
Fix new errors and warnings
This commit is contained in:
Robert Pintilii
2023-05-09 15:39:31 +03:00
committed by GitHub
parent dc037bc8dd
commit 65248d7d29
23 changed files with 243 additions and 391 deletions

View File

@@ -146,7 +146,7 @@ class ConferenceInfo extends Component<IProps> {
_renderAutoHide() {
const { autoHide } = this.props._conferenceInfo;
if (!autoHide || !autoHide.length) {
if (!autoHide?.length) {
return null;
}
@@ -173,7 +173,7 @@ class ConferenceInfo extends Component<IProps> {
_renderAlwaysVisible() {
const { alwaysVisible } = this.props._conferenceInfo;
if (!alwaysVisible || !alwaysVisible.length) {
if (!alwaysVisible?.length) {
return null;
}