Browse Source

ref(js): Fix link to projects install from settings (#28969)

Evan Purkhiser 3 years ago
parent
commit
c80dd770cd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      static/app/views/projectInstall/overview.tsx

+ 2 - 2
static/app/views/projectInstall/overview.tsx

@@ -40,9 +40,9 @@ class ProjectInstallOverview extends AsyncComponent<Props, State> {
 
     const installUrl = this.isGettingStarted
       ? `/organizations/${orgId}/projects/${projectId}/getting-started/${platform}/`
-      : recreateRoute(`install/${platform}/`, {
+      : recreateRoute(`${platform}/`, {
           ...this.props,
-          stepBack: -3,
+          stepBack: -1,
         });
 
     browserHistory.push(installUrl);