Skip to content

Commit

Permalink
Chore: #208 오타 수정 (projctStartDate → projectStartDate)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seok93 committed Oct 12, 2024
1 parent 092a207 commit 2560643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modal/task/ModalTaskForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type ModalTaskFormProps = {

// ToDo: React Query Error시 처리 추가할 것
export default function ModalTaskForm({ formId, project, taskId, onSubmit }: ModalTaskFormProps) {
const { projectId, startDate: projctStartDate, endDate: projectEndDate } = project;
const { projectId, startDate: projectStartDate, endDate: projectEndDate } = project;

const [keyword, setKeyword] = useState('');
const [assignees, setAssignees] = useState<UserWithRole[]>([]);
Expand Down Expand Up @@ -159,7 +159,7 @@ export default function ModalTaskForm({ formId, project, taskId, onSubmit }: Mod
endDateLabel="종료일"
startDateFieldName="startDate"
endDateFieldName="endDate"
limitStartDate={projctStartDate}
limitStartDate={projectStartDate}
limitEndDate={projectEndDate}
/>

Expand Down

0 comments on commit 2560643

Please sign in to comment.