diff --git a/web/components/estimates/create/modal.tsx b/web/components/estimates/create/modal.tsx index 4162bfd42..24296a51c 100644 --- a/web/components/estimates/create/modal.tsx +++ b/web/components/estimates/create/modal.tsx @@ -24,7 +24,7 @@ export const CreateEstimateModal: FC = observer((props) => // hooks const { createEstimate } = useProjectEstimates(); // states - const [estimateSystem, setEstimateSystem] = useState(EEstimateSystem.POINTS); + const [estimateSystem, setEstimateSystem] = useState(EEstimateSystem.CATEGORIES); const [estimatePoints, setEstimatePoints] = useState(undefined); const handleUpdatePoints = (newPoints: TEstimatePointsObject[] | undefined) => setEstimatePoints(newPoints); diff --git a/web/components/estimates/create/stage-one.tsx b/web/components/estimates/create/stage-one.tsx index aa8b947d9..12486faca 100644 --- a/web/components/estimates/create/stage-one.tsx +++ b/web/components/estimates/create/stage-one.tsx @@ -38,7 +38,6 @@ export const EstimateCreateStageOne: FC = (props) => {
Start from scratch
-