Update lint comments

This commit is contained in:
J. Ryan Stinnett 2021-04-01 13:26:00 +01:00
parent 71116bfa27
commit 4c5720a573
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
/* eslint-disable babel/no-invalid-this */ /* eslint-disable @babel/no-invalid-this */
import React from "react"; import React from "react";
import classNames from "classnames"; import classNames from "classnames";

View file

@ -74,7 +74,7 @@ export default class RoomHeader extends React.Component {
}; };
_rateLimitedUpdate = new RateLimitedFunc(function() { _rateLimitedUpdate = new RateLimitedFunc(function() {
/* eslint-disable babel/no-invalid-this */ /* eslint-disable @babel/no-invalid-this */
this.forceUpdate(); this.forceUpdate();
}, 500); }, 500);