From 321ce003f6042c84918d5d46eff5868894a90a76 Mon Sep 17 00:00:00 2001 From: William Grant Date: Wed, 7 Jun 2023 16:34:38 +1000 Subject: [PATCH] fix: updated quotes lookup explanation comment --- ts/state/ducks/conversations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/state/ducks/conversations.ts b/ts/state/ducks/conversations.ts index 2dd30d575..87e788556 100644 --- a/ts/state/ducks/conversations.ts +++ b/ts/state/ducks/conversations.ts @@ -296,7 +296,7 @@ export type ConversationsStateType = { selectedConversation?: string; // NOTE the messages that are in view messages: Array; - // NOTE the quotes that are in view + // NOTE the messages quoted by other messages which are in view quotes: QuoteLookupType; firstUnreadMessageId: string | undefined; messageDetailProps?: MessagePropsDetails;