|
@@ -242,7 +242,7 @@ const onboarding: OnboardingConfig<PlatformOptions> = {
|
|
],
|
|
],
|
|
},
|
|
},
|
|
],
|
|
],
|
|
- nextSteps: params => [
|
|
|
|
|
|
+ nextSteps: () => [
|
|
{
|
|
{
|
|
id: 'capacitor-android-setup',
|
|
id: 'capacitor-android-setup',
|
|
name: t('Capacitor 2 Setup'),
|
|
name: t('Capacitor 2 Setup'),
|
|
@@ -251,26 +251,6 @@ const onboarding: OnboardingConfig<PlatformOptions> = {
|
|
),
|
|
),
|
|
link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/?#capacitor-2---android-specifics',
|
|
link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/?#capacitor-2---android-specifics',
|
|
},
|
|
},
|
|
- params.isPerformanceSelected
|
|
|
|
- ? null
|
|
|
|
- : {
|
|
|
|
- id: 'performance-monitoring',
|
|
|
|
- name: t('Tracing'),
|
|
|
|
- description: t(
|
|
|
|
- 'Track down transactions to connect the dots between 10-second page loads and poor-performing API calls or slow database queries.'
|
|
|
|
- ),
|
|
|
|
- link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/tracing/',
|
|
|
|
- },
|
|
|
|
- params.isReplaySelected
|
|
|
|
- ? null
|
|
|
|
- : {
|
|
|
|
- id: 'session-replay',
|
|
|
|
- name: t('Session Replay'),
|
|
|
|
- description: t(
|
|
|
|
- 'Get to the root cause of an error or latency issue faster by seeing all the technical details related to that issue in one visual replay on your web application.'
|
|
|
|
- ),
|
|
|
|
- link: 'https://docs.sentry.io/platforms/javascript/guides/capacitor/session-replay/',
|
|
|
|
- },
|
|
|
|
],
|
|
],
|
|
};
|
|
};
|
|
|
|
|