Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HOTFIX] StagingArea에서 Task 모달 띄울 시 에러 수정 #260

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
handleSelectedTarget,
selectedTarget,
tasks,
targetDate,

Check failure on line 22 in src/components/common/StagingArea/StagingAreaTaskContainer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test

'targetDate' is declared but its value is never read.
}: StagingAreaTaskContainerProps) {
return (
<StagingAreaTaskContainerLayout>
Expand Down Expand Up @@ -48,7 +48,6 @@
handleSelectedTarget={handleSelectedTarget}
selectedTarget={selectedTarget}
isDragging={snapshot.isDragging}
targetDate={targetDate}
/>
</div>
)}
Expand Down
Loading