Skip to content

Commit cc2e5bd

Browse files
author
Ives van Hoorne
committed
Make Tab Emmet use class instead of className
1 parent 171649b commit cc2e5bd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/app/src/app/components/CodeEditor/Monaco/enable-emmet.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,7 @@ const enableEmmet = (editor, monaco) => {
4646

4747
// finally run expand to test the final result
4848
try {
49-
expandText = expand(str, {
50-
addons: {
51-
jsx: true,
52-
},
53-
});
49+
expandText = expand(str);
5450
} catch (e) {
5551
return '';
5652
}

0 commit comments

Comments
 (0)