diff --git a/src/features/new-project/view/NewProjectSteps.tsx b/src/features/new-project/view/NewProjectSteps.tsx index 30de7d05..c806f8da 100644 --- a/src/features/new-project/view/NewProjectSteps.tsx +++ b/src/features/new-project/view/NewProjectSteps.tsx @@ -8,6 +8,7 @@ import { splitOwnerAndRepository } from "@/common" import Link from "next/link" import HighlightText from "@/common/ui/HighlightText" import { BASE_COLORS } from "@/common/theme/theme" +import { Fragment } from "react" interface NewProjectStepsProps { repositoryNameSuffix: string @@ -102,7 +103,7 @@ const NewProjectSteps = ({ return ( {steps.map((step: StepType, index: number) => - <> + {isCreateRepositoryStep(step) ? {getStepContent(step, index)} @@ -114,7 +115,7 @@ return ( : getStepContent(step, index) } - + )} )}