Skip to content

Commit f242899

Browse files
authored
fix(getting-started): godot crash reports (#87184)
1 parent 6a75626 commit f242899

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

static/app/gettingStartedDocs/godot/godot.tsx

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import ExternalLink from 'sentry/components/links/externalLink';
22
import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
3+
import {StoreCrashReportsConfig} from 'sentry/components/onboarding/gettingStartedDoc/storeCrashReportsConfig';
34
import type {
45
Docs,
56
OnboardingConfig,
67
} from 'sentry/components/onboarding/gettingStartedDoc/types';
7-
import {tct} from 'sentry/locale';
8+
import {t, tct} from 'sentry/locale';
89

910
const getVerifySnippet = () => `
1011
extends Node
@@ -48,7 +49,7 @@ const onboarding: OnboardingConfig = {
4849
configurations: [{language: 'url', code: params.dsn.public}],
4950
},
5051
],
51-
verify: () => [
52+
verify: params => [
5253
{
5354
type: StepType.VERIFY,
5455
description: tct(
@@ -67,6 +68,15 @@ const onboarding: OnboardingConfig = {
6768
}
6869
),
6970
},
71+
{
72+
title: t('Further Settings'),
73+
description: (
74+
<StoreCrashReportsConfig
75+
organization={params.organization}
76+
projectSlug={params.projectSlug}
77+
/>
78+
),
79+
},
7080
],
7181
};
7282

0 commit comments

Comments
 (0)