From ede5fd855886f58022c6a6983b06a07100db28e0 Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 26 Jun 2023 10:53:07 +1000 Subject: [PATCH] feat: removed named comments in favour of git blame --- ts/components/conversation/SessionEmojiPanel.tsx | 2 +- ts/models/messageType.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ts/components/conversation/SessionEmojiPanel.tsx b/ts/components/conversation/SessionEmojiPanel.tsx index 315776103..1f658a266 100644 --- a/ts/components/conversation/SessionEmojiPanel.tsx +++ b/ts/components/conversation/SessionEmojiPanel.tsx @@ -86,7 +86,7 @@ type Props = { onEmojiClicked: (emoji: FixedBaseEmoji) => void; show: boolean; isModal?: boolean; - // NOTE Currently this doesn't work but we have a PR waiting to be merged to resolve this. William Grant 30/09/2022 + // NOTE Currently this doesn't work but we have a PR waiting to be merged to resolve this onKeyDown?: (event: any) => void; }; diff --git a/ts/models/messageType.ts b/ts/models/messageType.ts index e6ff51ffd..5027fe9d1 100644 --- a/ts/models/messageType.ts +++ b/ts/models/messageType.ts @@ -119,7 +119,6 @@ export interface MessageAttributes { /** * This is used when a user has performed an interaction (hiding, leaving, etc.) on a conversation. At the moment, this is only used for showing interaction errors. - * Will 14/06/2023 */ interactionNotification?: InteractionNotificationType; }