fix(editor): remove unused params from getWorker to satisfy ESLint

This commit is contained in:
SaelixCode
2026-03-24 19:59:51 -04:00
parent 0eaa45bd7f
commit 59290e9e9d
+1 -1
View File
@@ -12,7 +12,7 @@ import editorWorker from 'monaco-editor/esm/vs/editor/editor.worker?worker'
// that entirely. Sencho only needs YAML/plaintext so the base editorWorker
// covers all language modes — no additional language workers required.
window.MonacoEnvironment = {
getWorker(_workerId: string, _label: string): Worker {
getWorker(): Worker {
return new editorWorker()
},
}