Conform to new react and typescript eslint rules

This commit is contained in:
Michael Telatynski 2021-07-19 22:43:11 +01:00
parent b6feaf74bc
commit ce78cdf4ad
266 changed files with 1992 additions and 2000 deletions

View file

@ -41,10 +41,10 @@ export default class MjolnirBody extends React.Component {
render() {
return (
<div className='mx_MjolnirBody'><i>{_t(
<div className='mx_MjolnirBody'><i>{ _t(
"You have ignored this user, so their message is hidden. <a>Show anyways.</a>",
{}, { a: (sub) => <a href="#" onClick={this._onAllowClick}>{sub}</a> },
)}</i></div>
{}, { a: (sub) => <a href="#" onClick={this._onAllowClick}>{ sub }</a> },
) }</i></div>
);
}
}