diff --git a/src/components/Editor/AddTalkModal.vue b/src/components/Editor/AddTalkModal.vue index 043cd36ef..85eb0d075 100644 --- a/src/components/Editor/AddTalkModal.vue +++ b/src/components/Editor/AddTalkModal.vue @@ -124,10 +124,8 @@ export default { }, async selectConversation(conversation) { - console.debug('Selected conversation:', conversation) try { const url = generateURLForToken(conversation.token) - console.debug('Conversation URL:', url) if (!url) { showError(this.$t('calendar', 'Conversation does not have a valid URL.')) @@ -139,7 +137,6 @@ export default { calendarObjectInstance: this.calendarObjectInstance, location: url, }) - console.debug('Applied URL to location:', url) showSuccess(this.$t('calendar', 'Successfully added Talk room link to location.')) } else { const NEW_LINE = '\r\n' @@ -151,7 +148,6 @@ export default { calendarObjectInstance: this.calendarObjectInstance, description: updatedDescription, }) - console.debug('Applied URL to description:', url) showSuccess(this.$t('calendar', 'Successfully added Talk room link to description.')) }