Skip to content

Commit

Permalink
fix a type generation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bianca Yang committed Feb 12, 2024
1 parent d70a43e commit 7df12c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/scenes/onboarding/onboardingLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { teamLogic } from 'scenes/teamLogic'
import { urls } from 'scenes/urls'
import { userLogic } from 'scenes/userLogic'

import { BillingProductV2Type, ProductKey } from '~/types'
import { BillingProductV2Type, Breadcrumb, ProductKey } from '~/types'

import type { onboardingLogicType } from './onboardingLogicType'

Expand Down Expand Up @@ -141,7 +141,7 @@ export const onboardingLogic = kea<onboardingLogicType>([
selectors({
breadcrumbs: [
(s) => [s.productKey, s.stepKey],
(productKey, stepKey) => {
(productKey, stepKey): Breadcrumb[] => {
return [
{
key: Scene.Onboarding,
Expand Down

0 comments on commit 7df12c8

Please sign in to comment.