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.)
This commit is contained in:
Alezia Kurdis 2023-08-18 14:41:17 -04:00 committed by GitHub
parent 8bd82fc431
commit f0823de933
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@
if (LocationBookmarks.getHomeLocationAddress()) {
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
} else {
location.goToLocalSandbox();
Window.location = "file:///~/serverless/tutorial.json";
}
button.editProperties({
isActive: false