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

Commit

Permalink
TypeScript strict fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andybalaam committed Dec 8, 2022
1 parent 84d6a1d commit 69b139f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/FavouriteMessageTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class FavouriteMessageTile extends React.Component<IProps> {
const prevDate = prevEv.getDate();

// is this a continuation of the previous message?
continuation = (
continuation = !!(
thisDate &&
prevDate &&
!wantsDateSeparator(prevDate, thisDate) &&
Expand Down

0 comments on commit 69b139f

Please sign in to comment.