Skip to content

Commit 85afc7c

Browse files
committed
chore: Remove unused variable in getMarkDecorations
1 parent c8ecb7b commit 85afc7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/test-case-component/src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function getMarkDecorations({
9292
}): DecorationItem[] {
9393
const decorations: DecorationItem[] = [];
9494

95-
Object.entries(marks || {}).forEach(([key, { start, end }]) => {
95+
Object.entries(marks || {}).forEach(([key, { start }]) => {
9696
const [hatType, letter] = key.split(".") as [keyof typeof classesMap, string];
9797

9898
const markLineStart = start.line

0 commit comments

Comments
 (0)