Browse Source

feat(onboarding): Link to issues with project forced (#54671)

Matej Minar 1 year ago
parent
commit
86fa61b832
1 changed files with 6 additions and 2 deletions
  1. 6 2
      static/app/views/projectInstall/platform.tsx

+ 6 - 2
static/app/views/projectInstall/platform.tsx

@@ -236,7 +236,9 @@ export function ProjectInstallPlatform({location, params}: Props) {
             busy={loadingProjects}
             to={{
               pathname: issueStreamLink,
-              query: project?.id,
+              query: {
+                project: project?.id,
+              },
               hash: '#welcome',
             }}
           >
@@ -246,7 +248,9 @@ export function ProjectInstallPlatform({location, params}: Props) {
             busy={loadingProjects}
             to={{
               pathname: performanceOverviewLink,
-              query: project?.id,
+              query: {
+                project: project?.id,
+              },
             }}
           >
             {t('Take me to Performance')}