From e3999b72ca70c69528482aae79cc406ead9e7f62 Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Wed, 19 Mar 2025 18:28:56 +0100 Subject: [PATCH 1/2] reorder product selectors --- .../onboarding/productSelection.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/static/app/components/onboarding/productSelection.tsx b/static/app/components/onboarding/productSelection.tsx index 70e1504600620f..70e8db98216c42 100644 --- a/static/app/components/onboarding/productSelection.tsx +++ b/static/app/components/onboarding/productSelection.tsx @@ -395,18 +395,6 @@ export function ProductSelection({ checked={urlProducts.includes(ProductSolution.PERFORMANCE_MONITORING)} /> )} - {products.includes(ProductSolution.SESSION_REPLAY) && ( - handleClickProduct(ProductSolution.SESSION_REPLAY)} - disabled={disabledProducts[ProductSolution.SESSION_REPLAY]} - checked={urlProducts.includes(ProductSolution.SESSION_REPLAY)} - /> - )} {products.includes(ProductSolution.PROFILING) && ( )} + {products.includes(ProductSolution.SESSION_REPLAY) && ( + handleClickProduct(ProductSolution.SESSION_REPLAY)} + disabled={disabledProducts[ProductSolution.SESSION_REPLAY]} + checked={urlProducts.includes(ProductSolution.SESSION_REPLAY)} + /> + )} ); } From aa2735fb4a1c655f6fe4d877ea5e2d0f14c2543e Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Wed, 19 Mar 2025 18:32:10 +0100 Subject: [PATCH 2/2] link to product pages in product selector --- static/app/components/onboarding/productSelection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/app/components/onboarding/productSelection.tsx b/static/app/components/onboarding/productSelection.tsx index 70e8db98216c42..29b92a1af54375 100644 --- a/static/app/components/onboarding/productSelection.tsx +++ b/static/app/components/onboarding/productSelection.tsx @@ -389,7 +389,7 @@ export function ProductSelection({ description={t( 'Automatic performance issue detection across services and context on who is impacted, outliers, regressions, and the root cause of your slowdown.' )} - docLink="https://docs.sentry.io/platforms/javascript/guides/react/tracing/" + docLink="https://docs.sentry.io/concepts/key-terms/tracing/" onClick={() => handleClickProduct(ProductSolution.PERFORMANCE_MONITORING)} disabled={disabledProducts[ProductSolution.PERFORMANCE_MONITORING]} checked={urlProducts.includes(ProductSolution.PERFORMANCE_MONITORING)} @@ -404,7 +404,7 @@ export function ProductSelection({ strong: , } )} - docLink="https://docs.sentry.io/platforms/python/profiling/" + docLink="https://docs.sentry.io/product/explore/profiling/" onClick={() => handleClickProduct(ProductSolution.PROFILING)} disabled={disabledProducts[ProductSolution.PROFILING]} checked={urlProducts.includes(ProductSolution.PROFILING)} @@ -416,7 +416,7 @@ export function ProductSelection({ description={t( 'Video-like reproductions of user sessions with debugging context to help you confirm issue impact and troubleshoot faster.' )} - docLink="https://docs.sentry.io/platforms/javascript/guides/react/session-replay/" + docLink="https://docs.sentry.io/product/explore/session-replay/" onClick={() => handleClickProduct(ProductSolution.SESSION_REPLAY)} disabled={disabledProducts[ProductSolution.SESSION_REPLAY]} checked={urlProducts.includes(ProductSolution.SESSION_REPLAY)}