Skip to content

Commit

Permalink
fix: 필요없는 console 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Aug 23, 2024
1 parent 860a788 commit 46f2a7e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import Tag from "wowds-ui/Tag";

const SessionItem = ({ session }: { session: SessionApiResponseDto }) => {
const { description = "", period, week, title, difficulty } = session;
console.log(session);
const { startDate, endDate } = period;
const { month: startMonth, day: startDay } = parseISODate(startDate);
const { month: endMonth, day: endDay } = parseISODate(endDate);
Expand Down

0 comments on commit 46f2a7e

Please sign in to comment.