Skip to content

Commit

Permalink
Merge pull request #326 from Chaem03/feature/#310
Browse files Browse the repository at this point in the history
✅ Test: 랜덤주사위 버튼 test
  • Loading branch information
Chaem03 authored Aug 5, 2024
2 parents b6e078e + a8a1867 commit 31f7901
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/components/DateRangeCalendar/DateRangeCalendar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,6 @@ const DateRangeCalendar = () => {
} else {
console.log("No date selected");
}

setSelectedStartDate(formattedStartDate);
setSelectedEndDate(formattedEndDate);
setIsCalendarVisible(false);
setIsCheckVisible(true);
};

return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/mainRoutineBox/MainRoutineBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function MainRoutineBox({
</S.TitleContainer>
<S.BoxContent>
{contentArray.map((line, index) => (
<div key={index}>{line.trim()}</div>
<div key={index}>{line.trim()}</div>
))}
</S.BoxContent>
</S.BoxContainer>
Expand Down

0 comments on commit 31f7901

Please sign in to comment.