summary refs log tree commit diff
path: root/screen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'screen.ts')
-rw-r--r--screen.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen.ts b/screen.ts
index a623ddf..3663172 100644
--- a/screen.ts
+++ b/screen.ts
@@ -86,7 +86,7 @@ export class Screen {
         console.clear()
         process.stdout.write("\u001b[2J") // use an ansi escape code to clear the screen if console.clear doesn't clear fully
         this.elements.forEach(element => {
-            element.render()
+            element.render();
         });
     }