From fdc63e82824ae546f200301d349c3477ba3cdaf9 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Fri, 22 Dec 2023 21:55:28 -0500 Subject: [PATCH] chore: unused import --- src/components/MarkdownUi.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MarkdownUi.vue b/src/components/MarkdownUi.vue index 128933b1..e1ef95c3 100644 --- a/src/components/MarkdownUi.vue +++ b/src/components/MarkdownUi.vue @@ -188,7 +188,7 @@ const markdownHtml = ref('') // A ref to store the preview HTML (if user enables it in the toolbar) const markdownPreviewHtml = ref('') -const { toggleInlineFormatting, toggleTab, insertMarkdownTemplate } = composables.useMarkdownActions(textareaId.value, rawMarkdown) +const { toggleInlineFormatting, insertMarkdownTemplate } = composables.useMarkdownActions(textareaId.value, rawMarkdown) // When the user toggles inline formatting const formatSelection = (format: InlineFormat): void => {