Skip to content

Commit e59d208

Browse files
committed
fix
1 parent 3edeb8f commit e59d208

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

explorer-v2/src/lib/ESLintEditor.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import MonacoEditor from './MonacoEditor.svelte';
44
import { loadMonacoEditor } from './scripts/monaco-loader';
55
import { createEventDispatcher, onMount } from 'svelte';
6+
import { SvelteMap } from 'svelte/reactivity';
67
78
const dispatch = createEventDispatcher();
89
@@ -16,7 +17,7 @@
1617
let leftMarkers = [];
1718
let rightMarkers = [];
1819
19-
let messageMap = new Map();
20+
let messageMap = new SvelteMap();
2021
2122
$: showApplyFix = fix && fixedValue !== code;
2223
$: {

0 commit comments

Comments
 (0)