mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
chore(deps) Upgrade TS (#13331)
Upgrade typescript related packages Fix new errors and warnings
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user