Files
community-rule/app/(app)/create/utils/facetGroupToCreateFlowStep.ts
2026-04-30 08:11:55 -06:00

14 lines
529 B
TypeScript

import type { TemplateFacetGroupKey } from "../../../../lib/create/templateReviewMapping";
import { createFlowStepForCustomRuleFacetGroup } from "../../../../lib/create/customRuleFacets";
import type { CreateFlowStep } from "../types";
/**
* Custom-rule URL segment for a final-review category row (`+` navigation).
* Source: {@link CUSTOM_RULE_FACETS} (CR-92).
*/
export function createFlowStepForFacetGroup(
groupKey: TemplateFacetGroupKey,
): CreateFlowStep {
return createFlowStepForCustomRuleFacetGroup(groupKey);
}