@@ -287,7 +287,6 @@ module ErrorPane = {
287
287
288
288
let renderResult =
289
289
(
290
- ~compilerVersionGitCommit: option (string )=?,
291
290
~focusedRowCol: option ((int , int )),
292
291
~targetLang: Api . Lang . t ,
293
292
~compilerVersion: string ,
@@ -413,13 +412,8 @@ module ErrorPane = {
413
412
</div >;
414
413
| Nothing =>
415
414
let syntax = Api . Lang . toString(targetLang);
416
- let fullVersion =
417
- switch (compilerVersionGitCommit) {
418
- | Some (gitCommit ) => compilerVersion ++ " (" ++ gitCommit ++ ")"
419
- | None => compilerVersion
420
- };
421
415
<PreWrap >
422
- { j | This playground is now running on compiler version $fullVersion with $syntax syntax| j }
416
+ { j | This playground is now running on compiler version $compilerVersion with $syntax syntax| j }
423
417
-> s
424
418
</PreWrap >;
425
419
};
@@ -464,7 +458,6 @@ module ErrorPane = {
464
458
~actionIndicatorKey: string ,
465
459
~targetLang: Api . Lang . t ,
466
460
~compilerVersion: string ,
467
- ~compilerVersionGitCommit: option (string )=?,
468
461
~focusedRowCol: option ((int , int ))=?,
469
462
~result: FinalResult . t ,
470
463
) => {
@@ -506,7 +499,6 @@ module ErrorPane = {
506
499
<div className= "" >
507
500
<div className= "bg-night-dark text-snow-darker px-4 py-4" >
508
501
{renderResult(
509
- ~compilerVersionGitCommit? ,
510
502
~focusedRowCol,
511
503
~compilerVersion,
512
504
~targetLang,
@@ -1592,8 +1584,6 @@ module Button = {
1592
1584
| _ => false
1593
1585
};
1594
1586
1595
- let compilerVersionGitCommit =
1596
- Api . Compiler . version_git_commit(ready. selected. instance);
1597
1587
<>
1598
1588
<ControlPanel
1599
1589
isCompilerSwitching
@@ -1613,7 +1603,6 @@ module Button = {
1613
1603
actionIndicatorKey
1614
1604
targetLang= {ready. targetLang}
1615
1605
compilerVersion= {ready. selected. compilerVersion}
1616
- ?compilerVersionGitCommit
1617
1606
?focusedRowCol
1618
1607
result= {ready. result}
1619
1608
/>
0 commit comments