feat: Adds ts rule noImplicitOverride and fix errors.

This commit is contained in:
damencho
2025-03-12 10:19:11 -05:00
committed by Дамян Минков
parent 480b6f7cdc
commit ea0f9e7934
336 changed files with 878 additions and 877 deletions

View File

@@ -151,7 +151,7 @@ export default class AbstractPageReloadOverlay<P extends IProps>
* @inheritdoc
* @returns {void}
*/
componentDidMount() {
override componentDidMount() {
// FIXME: We should dispatch action for this.
if (typeof APP !== 'undefined' && APP.conference?._room) {
APP.conference._room.sendApplicationLog(JSON.stringify({
@@ -196,7 +196,7 @@ export default class AbstractPageReloadOverlay<P extends IProps>
* @inheritdoc
* @returns {void}
*/
componentWillUnmount() {
override componentWillUnmount() {
if (this._interval) {
clearInterval(this._interval);
this._interval = undefined;