File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
static/app/views/explore/metrics Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ import LoadingIndicator from 'sentry/components/loadingIndicator';
1010import { AuthTokenGeneratorProvider } from 'sentry/components/onboarding/gettingStartedDoc/authTokenGenerator' ;
1111import { ContentBlocksRenderer } from 'sentry/components/onboarding/gettingStartedDoc/contentBlocks/renderer' ;
1212import type { DocsParams } from 'sentry/components/onboarding/gettingStartedDoc/types' ;
13- import { ProductSolution } from 'sentry/components/onboarding/gettingStartedDoc/types' ;
13+ import {
14+ ProductSolution ,
15+ StepType ,
16+ } from 'sentry/components/onboarding/gettingStartedDoc/types' ;
1417import { useSourcePackageRegistries } from 'sentry/components/onboarding/gettingStartedDoc/useSourcePackageRegistries' ;
1518import { useLoadGettingStarted } from 'sentry/components/onboarding/gettingStartedDoc/utils/useLoadGettingStarted' ;
1619import { DatePageFilter } from 'sentry/components/organizations/datePageFilter' ;
@@ -92,9 +95,10 @@ function OnboardingPanel({
9295 ) ;
9396}
9497
95- const STEP_TITLES : Record < 'install' | 'verify' , string > = {
96- [ 'install' ] : t ( 'Install Sentry' ) ,
97- [ 'verify' ] : t ( 'Send Metrics and Verify' ) ,
98+ const STEP_TITLES : Record < StepType , string > = {
99+ [ StepType . INSTALL ] : t ( 'Install Sentry' ) ,
100+ [ StepType . CONFIGURE ] : t ( 'Configure Sentry' ) ,
101+ [ StepType . VERIFY ] : t ( 'Send Metrics and Verify' ) ,
98102} ;
99103
100104function Onboarding ( { organization, project} : OnboardingProps ) {
You can’t perform that action at this time.
0 commit comments