diff --git a/packages/plans-grid-next/src/hooks/data-store/use-grid-plans.tsx b/packages/plans-grid-next/src/hooks/data-store/use-grid-plans.tsx index 02286a6e822256..cb439333d2c1f9 100644 --- a/packages/plans-grid-next/src/hooks/data-store/use-grid-plans.tsx +++ b/packages/plans-grid-next/src/hooks/data-store/use-grid-plans.tsx @@ -91,7 +91,6 @@ const isGridPlanVisible = ( { return isVisible; }; -// TODO: Revisit these export conventions if we continue with this approach export const usePlanTypesWithIntent = ( { intent, selectedPlan, diff --git a/packages/plans-grid-next/src/index.tsx b/packages/plans-grid-next/src/index.tsx index 9ee709eb1abdb7..c4af3677f6486c 100644 --- a/packages/plans-grid-next/src/index.tsx +++ b/packages/plans-grid-next/src/index.tsx @@ -5,7 +5,6 @@ import PlanTypeSelector from './components/plan-type-selector'; import { Plans2023Tooltip } from './components/plans-2023-tooltip'; import { EFFECTIVE_TERMS_LIST } from './constants'; import useGridPlanForSpotlight from './hooks/data-store/use-grid-plan-for-spotlight'; -// TODO: Revisit this convention. Is there a better way to export usePlanTypesWithIntent? import useGridPlans, { usePlanTypesWithIntent } from './hooks/data-store/use-grid-plans'; import useGridPlansForComparisonGrid from './hooks/data-store/use-grid-plans-for-comparison-grid'; import useGridPlansForFeaturesGrid from './hooks/data-store/use-grid-plans-for-features-grid';