diff --git a/src/lib/components/common/RichTextInput.svelte b/src/lib/components/common/RichTextInput.svelte index 7fa700dfa..80f92694c 100644 --- a/src/lib/components/common/RichTextInput.svelte +++ b/src/lib/components/common/RichTextInput.svelte @@ -53,10 +53,7 @@ // Function to find the next template in the document function findNextTemplate(doc, from = 0) { - const patterns = [ - { start: '[', end: ']' }, - { start: '{{', end: '}}' } - ]; + const patterns = [{ start: '{{', end: '}}' }]; let result = null;