@ -82,12 +82,9 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
throw new Error('renderRow: Tried to render without conversations');
}
let conversation;
if (conversations?.length) {
conversation = conversations[index];
const conversation = conversations[index];
if (!conversation) {
window?.log?.info('No conversation found at index');
return null;
@ -2,7 +2,7 @@ import _ from 'lodash';
import { SignalService } from '../protobuf';
import { TTL_DEFAULT } from '../session/constants';
import { SNodeAPI } from '../session/snode_api';
import { CallManager, UserUtils } from '../session/utils';
import { CallManager } from '../session/utils';
import { removeFromCache } from './cache';
import { EnvelopePlus } from './types';