minor formatting and linting changes.

pull/1718/head
Warrick Corfe-Tan 4 years ago
parent c04d3cd7d1
commit 5b5cea6831

@ -272,7 +272,6 @@ export class SessionMessagesList extends React.Component<Props, State> {
return;
}
if (messageProps) {
messageProps.nextMessageToPlay = this.state.nextMessageToPlay;
messageProps.playableMessageIndex = playableMessageIndex;
@ -384,12 +383,11 @@ export class SessionMessagesList extends React.Component<Props, State> {
}
}
/**
* Sets the targeted index for the next
* @param index index of message that just completed
*/
private playNextMessage = (index: any) => {
private readonly playNextMessage = (index: any) => {
const { messages } = this.props;
let nextIndex: number | null = index - 1;

Loading…
Cancel
Save