File tree 1 file changed +12
-2
lines changed
static/app/gettingStartedDocs/godot
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
import ExternalLink from 'sentry/components/links/externalLink' ;
2
2
import { StepType } from 'sentry/components/onboarding/gettingStartedDoc/step' ;
3
+ import { StoreCrashReportsConfig } from 'sentry/components/onboarding/gettingStartedDoc/storeCrashReportsConfig' ;
3
4
import type {
4
5
Docs ,
5
6
OnboardingConfig ,
6
7
} from 'sentry/components/onboarding/gettingStartedDoc/types' ;
7
- import { tct } from 'sentry/locale' ;
8
+ import { t , tct } from 'sentry/locale' ;
8
9
9
10
const getVerifySnippet = ( ) => `
10
11
extends Node
@@ -48,7 +49,7 @@ const onboarding: OnboardingConfig = {
48
49
configurations : [ { language : 'url' , code : params . dsn . public } ] ,
49
50
} ,
50
51
] ,
51
- verify : ( ) => [
52
+ verify : params => [
52
53
{
53
54
type : StepType . VERIFY ,
54
55
description : tct (
@@ -67,6 +68,15 @@ const onboarding: OnboardingConfig = {
67
68
}
68
69
) ,
69
70
} ,
71
+ {
72
+ title : t ( 'Further Settings' ) ,
73
+ description : (
74
+ < StoreCrashReportsConfig
75
+ organization = { params . organization }
76
+ projectSlug = { params . projectSlug }
77
+ />
78
+ ) ,
79
+ } ,
70
80
] ,
71
81
} ;
72
82
You can’t perform that action at this time.
0 commit comments