diff --git a/react/features/base/toolbox/components/AbstractButton.js b/react/features/base/toolbox/components/AbstractButton.js index bdd6892d4..802dfe36a 100644 --- a/react/features/base/toolbox/components/AbstractButton.js +++ b/react/features/base/toolbox/components/AbstractButton.js @@ -257,7 +257,7 @@ export default class AbstractButton extends Component { afterClick && afterClick(e); // blur after click to release focus from button to allow PTT. - e && e.currentTarget && e.currentTarget.blur(); + e?.currentTarget?.blur && e.currentTarget.blur(); } /**