Remove console.log

This commit is contained in:
Valtteri Karesto
2022-05-03 14:04:18 +03:00
parent 923b689c98
commit e33093f160

View File

@@ -54,18 +54,6 @@ const setMarkers = (monacoE: typeof monaco) => {
marker?.code?.includes("hooks-")
);
console.log(
monacoE.editor
.getModelMarkers({})
// Filter out the markers that are hooks specific
.filter(
(marker) =>
typeof marker?.code === "string" &&
// Take only markers that starts with "hooks-"
marker?.code?.includes("hooks-")
)
);
// Get the active model (aka active file you're editing)
// const model = monacoE.editor?.getModel(
// monacoE.Uri.parse(`file:///work/c/${state.files?.[state.active]?.name}`)