From fbc0ff7509d4a95f60a8d9187b1e8f83a089a9a3 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 15 Dec 2025 20:00:10 +0530 Subject: [PATCH] fix: issues from conflicts --- .../dashboard/components/widgets/WootWriter/Editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/widgets/WootWriter/Editor.vue b/app/javascript/dashboard/components/widgets/WootWriter/Editor.vue index f4a83de94..3e854baf6 100644 --- a/app/javascript/dashboard/components/widgets/WootWriter/Editor.vue +++ b/app/javascript/dashboard/components/widgets/WootWriter/Editor.vue @@ -56,6 +56,7 @@ import { getFormattingForEditor, getSelectionCoords, calculateMenuPosition, + stripUnsupportedFormatting, getEffectiveChannelType, } from 'dashboard/helper/editorHelper'; import { @@ -109,7 +110,6 @@ const { t } = useI18n(); const TYPING_INDICATOR_IDLE_TIME = 4000; const MAXIMUM_FILE_UPLOAD_SIZE = 4; // in MB const DEFAULT_FORMATTING = 'Context::Default'; -const PRIVATE_NOTE_FORMATTING = 'Context::PrivateNote'; const effectiveChannelType = computed(() => getEffectiveChannelType(props.channelType, props.medium)