Skip to content

Commit 9074801

Browse files
committed
fix
1 parent e6dc56d commit 9074801

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/Recording/Recording.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ const Recording = (props) => {
244244
<MonacoEditor
245245
width="100%"
246246
height="75vh"
247-
language={monacoMap[languageId] || 71}
247+
language={monacoMap[languageId] || "python"}
248248
theme="vs-dark"
249249
options={{
250250
selectOnLineNumbers: true,

src/pages/StudentEditor/StudentEditor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const StudentEditor = (props) => {
146146
<MonacoEditor
147147
width="100%"
148148
height="75vh"
149-
language={monacoMap[languageId] || 71}
149+
language={monacoMap[languageId] || "python"}
150150
theme="vs-dark"
151151
options={{
152152
selectOnLineNumbers: true,

0 commit comments

Comments
 (0)