Skip to content

Commit 41df958

Browse files
author
Loïc Mangeonjean
committed
fix: properly dispose the anonymous models
1 parent 01a6732 commit 41df958

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/MonacoEditor.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,11 @@ function MonacoEditor ({
233233
}
234234
} else {
235235
model = monaco.editor.createModel(value!, monacoLanguage)
236+
disposableStore.add({
237+
dispose () {
238+
model.dispose()
239+
}
240+
})
236241
}
237242

238243
modelRef.current = model

0 commit comments

Comments
 (0)