From f0823de9331742ab7df524d5505d553354e0cf3b Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Fri, 18 Aug 2023 14:41:17 -0400 Subject: [PATCH] Change the fallback to tutorial When there is no home bookmark already set, the Home app was redirecting to localhost. But since there is a possibility that no localhost could be up and running, we will instead redirect to tutorial rather than to localhost. (tutorial being always present.) --- applications/home/app_home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/home/app_home.js b/applications/home/app_home.js index 78c3255..4029d94 100644 --- a/applications/home/app_home.js +++ b/applications/home/app_home.js @@ -38,7 +38,7 @@ if (LocationBookmarks.getHomeLocationAddress()) { location.handleLookupString(LocationBookmarks.getHomeLocationAddress()); } else { - location.goToLocalSandbox(); + Window.location = "file:///~/serverless/tutorial.json"; } button.editProperties({ isActive: false