Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 81f2e67

Browse files
committed
Fixed Linting errors
1 parent 8b644e7 commit 81f2e67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/structures/MessagePanel.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,12 +542,12 @@ export default class MessagePanel extends React.Component {
542542
}
543543
if (!grouper) {
544544
const wantTile = this._shouldShowEvent(mxEv);
545-
const isGrouped =false
545+
const isGrouped =false;
546546
if (wantTile) {
547547
// make sure we unpack the array returned by _getTilesForEvent,
548548
// otherwise react will auto-generate keys and we will end up
549549
// replacing all of the DOM elements every time we paginate.
550-
ret.push(...this._getTilesForEvent(prevEvent, mxEv, last, isGrouped,
550+
ret.push(...this._getTilesForEvent(prevEvent, mxEv, last, isGrouped,
551551
nextEvent, nextTile));
552552
prevEvent = mxEv;
553553
}
@@ -989,7 +989,7 @@ class CreationGrouper {
989989

990990
for (const ejected of this.ejectedEvents) {
991991
ret.push(...panel._getTilesForEvent(
992-
createEvent, ejected, createEvent === lastShownEvent,isGrouped
992+
createEvent, ejected, createEvent === lastShownEvent, isGrouped,
993993
));
994994
}
995995

0 commit comments

Comments
 (0)