diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index af8a2490f..63cf045e8 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -353,7 +353,9 @@ export default { async sendMessage(message) { try { - const { data: { CreateMessage: createdMessage }} = await this.$apollo.mutate({ + const { + data: { CreateMessage: createdMessage }, + } = await this.$apollo.mutate({ mutation: createMessageMutation(), variables: { roomId: message.roomId,