From 90ca77a46a59fbbfb18eda888f9d387b911fe939 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 22 Oct 2024 15:08:57 +0900 Subject: [PATCH] Tweak demo mode to use all dashboards --- frontend/src/app/components/start/start.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/start/start.component.ts b/frontend/src/app/components/start/start.component.ts index b4ef99462..18578adea 100644 --- a/frontend/src/app/components/start/start.component.ts +++ b/frontend/src/app/components/start/start.component.ts @@ -76,7 +76,7 @@ export class StartComponent implements OnInit, AfterViewChecked, OnDestroy { if (!window.demoMode) { // @ts-ignore window.demoMode = true; - const paths = ['', 'acceleration', 'mining', 'graphs']; + const paths = ['', 'acceleration', 'mining', 'lightning']; let i = 0; while ('Bitcoin is still alive') { i = (i + 1) % paths.length;