Skip to content

fix: update-flutter-docs #86025

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

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function getPath(sdkName: string | null | undefined) {
case 'sentry.java.android':
return 'android'; // https://docs.sentry.io/platforms/android/session-replay/
case 'sentry.dart.flutter':
return 'flutter'; // https://docs.sentry.io/platforms/flutter/session-replay/
return 'dart/guides/flutter'; // https://docs.sentry.io/platforms/dart/guides/flutter/session-replay/
case 'npm:@sentry/react-native':
case 'sentry.cocoa.react-native':
case 'sentry.javascript.react-native':
Expand Down
2 changes: 1 addition & 1 deletion static/app/data/platforms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const platforms: PlatformIntegration[] = [
name: 'Flutter',
type: 'framework',
language: 'flutter',
link: 'https://docs.sentry.io/platforms/flutter/',
link: 'https://docs.sentry.io/platforms/dart/guides/flutter/',
},
{
id: 'go',
Expand Down
10 changes: 5 additions & 5 deletions static/app/gettingStartedDocs/flutter/flutter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const onboarding: OnboardingConfig<PlatformOptions> = {
'Add Sentry automatically to your app with the [wizardLink:Sentry wizard] (call this inside your project directory).',
{
wizardLink: (
<ExternalLink href="https://docs.sentry.io/platforms/flutter/#install" />
<ExternalLink href="https://docs.sentry.io/platforms/dart/guides/flutter/#install" />
),
}
),
Expand Down Expand Up @@ -327,7 +327,7 @@ const onboarding: OnboardingConfig<PlatformOptions> = {
'To learn more about the API and automatic instrumentations, check out the [perfDocs: tracing documentation].',
{
perfDocs: (
<ExternalLink href="https://docs.sentry.io/platforms/flutter/tracing/instrumentation/" />
<ExternalLink href="https://docs.sentry.io/platforms/dart/guides/flutter/tracing/instrumentation/" />
),
}
),
Expand All @@ -343,14 +343,14 @@ const onboarding: OnboardingConfig<PlatformOptions> = {
description: t(
'We offer a range of methods to provide Sentry with debug symbols so that you can see symbolicated stack traces and find the cause of your errors faster.'
),
link: 'https://docs.sentry.io/platforms/flutter/upload-debug/',
link: 'https://docs.sentry.io/platforms/dart/guides/flutter/upload-debug/',
},
{
name: t('Distributed Tracing'),
description: t(
'Connect all your services by configuring your endpoints in the Sentry init.'
),
link: 'https://docs.sentry.io/platforms/flutter/tracing/trace-propagation/limiting-trace-propagation/',
link: 'https://docs.sentry.io/platforms/dart/guides/flutter/tracing/trace-propagation/limiting-trace-propagation/',
},
{
name: t('Connect your Git Repo'),
Expand Down Expand Up @@ -403,7 +403,7 @@ const replayOnboarding: OnboardingConfig<PlatformOptions> = {
{
type: StepType.CONFIGURE,
description: getReplayMobileConfigureDescription({
link: 'https://docs.sentry.io/platforms/flutter/session-replay/#privacy',
link: 'https://docs.sentry.io/platforms/dart/guides/flutter/session-replay/#privacy',
}),
configurations: [
{
Expand Down
Loading