Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(onboarding): Reorder product selector items and update links #87412

Merged
merged 2 commits into from
Mar 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions static/app/components/onboarding/productSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,24 +389,12 @@ 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)}
/>
)}
{products.includes(ProductSolution.SESSION_REPLAY) && (
<Product
label={t('Session Replay')}
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/"
onClick={() => handleClickProduct(ProductSolution.SESSION_REPLAY)}
disabled={disabledProducts[ProductSolution.SESSION_REPLAY]}
checked={urlProducts.includes(ProductSolution.SESSION_REPLAY)}
/>
)}
{products.includes(ProductSolution.PROFILING) && (
<Product
label={t('Profiling')}
Expand All @@ -416,12 +404,24 @@ export function ProductSelection({
strong: <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)}
/>
)}
{products.includes(ProductSolution.SESSION_REPLAY) && (
<Product
label={t('Session Replay')}
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/product/explore/session-replay/"
onClick={() => handleClickProduct(ProductSolution.SESSION_REPLAY)}
disabled={disabledProducts[ProductSolution.SESSION_REPLAY]}
checked={urlProducts.includes(ProductSolution.SESSION_REPLAY)}
/>
)}
</Products>
);
}
Expand Down
Loading