Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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 '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