Added trailing comma to make eslint happy

pull/21833/head
Steffen Kolmer 2021-08-28 14:04:00 +02:00
parent 3ef9584f68
commit 6a550f2f9c
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export default class EventTilePreview extends React.Component<IProps, IState> {
const className = classnames(this.props.className, {
"mx_IRCLayout": this.props.layout == Layout.IRC,
"mx_GroupLayout": this.props.layout == Layout.Group,
"mx_EventTilePreview_loader": !this.props.userId
"mx_EventTilePreview_loader": !this.props.userId,
});
if (!this.props.userId) return <div className={className}><Spinner /></div>;