Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d643485

Browse files
committedMar 3, 2025··
BA-2234 Fix rebase mistakes
1 parent 3597556 commit d643485

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎packages/components/modules/messages/web/SendMessage/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ const SendMessage = forwardRef<HTMLInputElement, SendMessageProps>(
110110
id: `client:new_message:${Date.now()}`,
111111
content,
112112
created: new Date(Date.now()).toISOString(),
113+
deleted: false,
113114
extraData: null,
114115
messageType: MESSAGE_TYPE.user,
115116
inReplyTo: null,

‎packages/components/schema.graphql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ type RoleUpdatePayload {
16781678
}
16791679

16801680
type Subscription {
1681-
chatRoomOnMessage(profileId: ID!, roomId: ID!): ChatRoomOnNewMessage
1681+
chatRoomOnMessage(profileId: ID!, roomId: ID!): ChatRoomOnMessage
16821682
chatRoomOnRoomUpdate(profileId: ID!): ChatRoomOnRoomUpdate
16831683
chatRoomOnMessagesCountUpdate(profileId: ID!): ChatRoomOnMessagesCountUpdate
16841684
onNotificationChange: OnNotificationChange

0 commit comments

Comments
 (0)
Please sign in to comment.