Skip to content

Commit da387eb

Browse files
committed
chore: Remove console.log statements
1 parent 75deef0 commit da387eb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

β€Žpackages/test-case-component/src/helpers.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ function getMarkDecorations({
8787

8888
Object.entries(marks || {}).forEach(([key, { start, end }]) => {
8989
const [hatType, letter] = key.split(".") as [keyof typeof classesMap, string];
90-
console.log("πŸ”‘", key, start, end);
9190

9291
const markLineStart = start.line
9392

@@ -116,7 +115,6 @@ function getMarkDecorations({
116115
alwaysWrap: true,
117116
}
118117

119-
console.log("πŸ”‘πŸ”‘", decorationItem)
120118

121119
decorations.push(decorationItem);
122120
});
@@ -176,7 +174,6 @@ function getIdeFlashDecorations({
176174
},
177175
alwaysWrap: true,
178176
};
179-
console.log("πŸ”₯πŸ”₯", decorationItem);
180177
decorations.push(decorationItem);
181178
}
182179

@@ -190,7 +187,6 @@ function getIdeFlashDecorations({
190187
},
191188
alwaysWrap: true,
192189
}
193-
console.log("πŸ”₯πŸ”₯", decorationItem)
194190
decorations.push(decorationItem);
195191
} else {
196192
console.warn(`Unknown range type "${type}". Skipping this flash.`);
@@ -222,7 +218,6 @@ function getSlections(
222218
alwaysWrap: true,
223219
}
224220
decorations.push(decorationItem)
225-
console.log("🟦", decorationItem)
226221
})
227222

228223
return decorations

0 commit comments

Comments
Β (0)