diff --git a/playground/frontend/lib/main.dart b/playground/frontend/lib/main.dart
index c2f88fdca184..d0ba81747628 100644
--- a/playground/frontend/lib/main.dart
+++ b/playground/frontend/lib/main.dart
@@ -22,7 +22,7 @@ import 'package:playground/configure_nonweb.dart'
if (dart.library.html) 'package:playground/configure_web.dart';
import 'package:playground/playground_app.dart';
-void main() async {
+void main() {
findSystemLocale();
configureApp();
runApp(const PlaygroundApp());
diff --git a/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart b/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
index 9e86f0103e63..8f354ce9e8d6 100644
--- a/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
+++ b/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
@@ -166,6 +166,7 @@ class CodeRepository {
final log = responses[1];
final error = responses[2];
return RunCodeResult(
+ pipelineUuid: pipelineUuid,
status: status,
output: prevOutput + output.output + error.output,
log: prevLog + log.output,
diff --git a/playground/frontend/web/index.html b/playground/frontend/web/index.html
index 3ed6f7077bd1..41109b8a2432 100644
--- a/playground/frontend/web/index.html
+++ b/playground/frontend/web/index.html
@@ -39,6 +39,11 @@
+
+
+
+
+