From 67e52588464dbb0617aa9d5204319f7cb5aaedbf Mon Sep 17 00:00:00 2001 From: LunaUrsa <1836049+LunaUrsa@users.noreply.github.com> Date: Sun, 21 Jul 2024 15:05:17 -0500 Subject: [PATCH] fix: Another minor fix to codemirror --- pages/content-ui/src/util/codeMirror.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/content-ui/src/util/codeMirror.tsx b/pages/content-ui/src/util/codeMirror.tsx index b24561c..6822db6 100644 --- a/pages/content-ui/src/util/codeMirror.tsx +++ b/pages/content-ui/src/util/codeMirror.tsx @@ -40,7 +40,7 @@ import { import { indentWithTab, history, defaultKeymap, historyKeymap, undo, redo } from '@codemirror/commands'; import { search, highlightSelectionMatches, searchKeymap } from '@codemirror/search'; import { closeBrackets, autocompletion, closeBracketsKeymap, completionKeymap } from '@codemirror/autocomplete'; -import { Diagnostic, lintGutter, lintKeymap, linter } from '@codemirror/lint'; +import { lintGutter, lintKeymap } from '@codemirror/lint'; import { vscodeKeymap } from '@replit/codemirror-vscode-keymap'; // import { oneDark, oneDarkTheme } from "@codemirror/theme-one-dark"; import { handleEditorChange } from './scriptWorkbench';