Remove chat comments and conversation pane

This commit is contained in:
Jon Staab
2024-12-04 15:35:39 -08:00
parent 7b58cdf855
commit 64916f5d29
8 changed files with 8 additions and 116 deletions
+1 -1
View File
@@ -396,7 +396,7 @@ export const readMessage = (event: TrustedEvent): Maybe<ChannelMessage> => {
}
export const channelMessages = deriveEventsMapped<ChannelMessage>(repository, {
filters: [{kinds: [MESSAGE, COMMENT]}],
filters: [{kinds: [MESSAGE]}],
eventToItem: readMessage,
itemToEvent: item => item.event,
})