Skip to content

Commit

Permalink
fix having duplicated TutorualStepStatus type
Browse files Browse the repository at this point in the history
  • Loading branch information
vieiralucas committed Jan 6, 2025
1 parent 75c25d8 commit 201e707
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,6 @@ export enum ElementType {
BlockGroup = 'BLOCK_GROUP',
}

export type TutorialStepStatus = 'current' | 'completed' | 'upcoming'
export const OnboardingTutorialStep = z.enum([
'connectDataSource',
'runQuery',
Expand All @@ -1199,7 +1198,6 @@ export const OnboardingTutorialStep = z.enum([
'publishDashboard',
'inviteTeamMembers',
])

export type OnboardingTutorialStep = z.infer<typeof OnboardingTutorialStep>

export const TutorialStepStatus = z.enum(['current', 'completed', 'upcoming'])
Expand Down

0 comments on commit 201e707

Please sign in to comment.