Website: Update redirect on /try-fleet/login and /try-fleet/register (#15655)

Changes:
- Updated the forms on /try-fleet/login and /try-fleet/register to
redirect users to /try-fleet/explore-data
This commit is contained in:
Eric 2023-12-14 12:13:08 -06:00 committed by GitHub
parent 9812c10d1d
commit 297f84cc8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ parasails.registerPage('register', {
if(this.exploreDataRedirectSlug){
window.location = this.exploreDataRedirectSlug;
} else {
window.location = '/try-fleet/fleetctl-preview';
window.location = '/try-fleet/explore-data';
}
},

View file

@ -69,7 +69,7 @@ parasails.registerPage('sandbox-login', {
if(this.exploreDataRedirectSlug){
window.location = this.exploreDataRedirectSlug;
} else {
window.location = '/try-fleet/fleetctl-preview';
window.location = '/try-fleet/explore-data';
}
},