@@ -54,9 +54,6 @@ export function getTourTask(
5454 return { tour : 'tabs' , task : OnboardingTaskKey . SIDEBAR_GUIDE } ;
5555 case 'issues' :
5656 return { tour : 'issues' , task : OnboardingTaskKey . ISSUE_GUIDE } ;
57- // TODO(ogi): Remove this once we merge the new issues tour
58- case 'issues_v3' :
59- return { tour : 'issues' , task : OnboardingTaskKey . ISSUE_GUIDE } ;
6057 case 'releases' :
6158 return { tour : 'releases' , task : OnboardingTaskKey . RELEASE_GUIDE } ;
6259 case 'performance' :
@@ -68,17 +65,7 @@ export function getTourTask(
6865}
6966
7067export function getDemoGuides ( ) {
71- return [
72- { guide : 'sidebar_v2' , seen : false } ,
73- { guide : 'issues_v3' , seen : false } ,
74- { guide : 'releases' , seen : false } ,
75- // {guide: 'react-release', seen: false},
76- // {guide: 'release-details_v2', seen: false},e
77- { guide : 'performance' , seen : false } ,
78- // {guide: 'transaction_summary', seen: false},
79- // {guide: 'transaction_details_v2', seen: false},
80- { guide : 'issue_stream_v3' , seen : false } ,
81- ] ;
68+ return [ { guide : 'sidebar_v2' , seen : false } ] ;
8269}
8370
8471export function getDemoModeGuides ( ) : GuidesContent {
@@ -127,48 +114,5 @@ export function getDemoModeGuides(): GuidesContent {
127114 } ,
128115 ] ,
129116 } ,
130- {
131- guide : 'issue_stream_v3' ,
132- requiredTargets : [ 'issue_stream' ] ,
133- steps : [
134- {
135- title : t ( 'Issues' ) ,
136- target : 'issue_stream' ,
137- description : t (
138- `Sentry automatically groups similar events together into an issue. Similarity is
139- determined by stack trace and other factors. Click on an issue to learn more.`
140- ) ,
141- } ,
142- ] ,
143- } ,
144- {
145- guide : 'issues_v3' ,
146- requiredTargets : [ 'tags' ] ,
147- steps : [
148- {
149- title : t ( 'Metadata and metrics' ) ,
150- target : 'tags' ,
151- description : t (
152- `See tags like specific users affected by the event, device, OS, and browser type.
153- On the right side of the page you can view the number of affected users and exception frequency overtime.`
154- ) ,
155- } ,
156- {
157- title : t ( 'Find your broken code' ) ,
158- target : 'stacktrace' ,
159- description : t (
160- `View the stack trace to see the exact sequence of function calls leading to the error in question.`
161- ) ,
162- } ,
163- {
164- title : t ( 'Retrace your steps' ) ,
165- target : 'breadcrumbs' ,
166- description : t (
167- `Sentry automatically captures breadcrumbs for events so you can see the sequence of events leading up to the error.`
168- ) ,
169- nextText : t ( 'Got it' ) ,
170- } ,
171- ] ,
172- } ,
173117 ] ;
174118}
0 commit comments