fix: move quote not found comment for better context

This commit is contained in:
William Grant 2023-05-16 13:30:40 +10:00
parent fb51b20096
commit a204464723

View file

@ -1004,12 +1004,16 @@ export const getMessageQuoteProps = createSelector(
let isFromMe = UserUtils.isUsFromCache(author) || false;
// NOTE: if the message is not found, we still want to render the quote
const quoteNotFound = {
direction,
quote: { author, isFromMe, referencedMessageNotFound: true },
quote: {
author,
isFromMe,
referencedMessageNotFound: true,
},
};
// NOTE: if the message is not found, we still want to render the quote
if (!quotesProps || isEmpty(quotesProps)) {
return quoteNotFound;
}
@ -1054,7 +1058,10 @@ export const getMessageQuoteProps = createSelector(
convoId: convo.id,
};
return { direction, quote };
return {
direction,
quote,
};
}
);
// tslint:enable: cyclomatic-complexity