From 1f07a4f56f0d3bba4ddfea48b70bf2a086ef1963 Mon Sep 17 00:00:00 2001 From: caedenph Date: Sat, 29 Jun 2024 17:08:10 +0100 Subject: [PATCH] fix(results): Add text after emulating loading time --- src/routes/results.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/results.ts b/src/routes/results.ts index 51c5b80..ae367ac 100644 --- a/src/routes/results.ts +++ b/src/routes/results.ts @@ -246,7 +246,6 @@ export class ProcessResultsPage { this.app.screen.height * 0.2); textObject.anchor.set(0.5); - this.app.stage.addChild(textObject); const responseData = JSON.parse(JSON.stringify(data)); @@ -297,5 +296,6 @@ export class ProcessResultsPage { this.app.stage.addChild(viewTestLogsButtonContainer); this.app.stage.addChild(restartTestButtonContainer); this.app.stage.addChild(homeButton); + this.app.stage.addChild(textObject); } }